Bug 423169 (and likely bug 423163) - drag and drop to bookmarks toolbar is broken. Patch by Michael Schonfeld <dev@schonfeld.org>, r=me.

This commit is contained in:
mozilla.mano@sent.com 2008-03-16 23:34:57 -07:00
Родитель ec745c196d
Коммит 82bfc45bf9
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -315,7 +315,7 @@
<method name="canDrop">
<body><![CDATA[
var ip = this.insertionPoint;
var ip = this._rootView.insertionPoint;
return ip && PlacesControllerDragHelper.canDrop(ip);
]]></body>
</method>

Просмотреть файл

@ -825,7 +825,7 @@
},
canDrop: function TBV_DO_canDrop(event, session) {
var ip = this.insertionPoint;
var ip = this._self.insertionPoint;
return ip && PlacesControllerDragHelper.canDrop(ip);
},