Bug 415915 - "Drag / Drop in the Bookmarks Menu is broken" [p=mak77@supereva.it (Marco Bonardo [mak77]) r=dietrich a=blocking-firefox3+]

This commit is contained in:
reed@reedloden.com 2008-02-13 03:02:42 -08:00
parent ba0ce9ac14
commit 56cd3cc383

View File

@ -1477,7 +1477,7 @@ PlacesMenuDNDObserver.prototype = {
getSupportedFlavours: function TBV_DO_getSupportedFlavours() {
var flavorSet = new FlavourSet();
var types = PlacesUtils.GENERIC_VIEW_DROP_TYPES;
for (var i = 0; i < types; ++i)
for (var i = 0; i < types.length; ++i)
flavorSet.appendFlavour(types[i]);
return flavorSet;
},