www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 548b3b20ed030206fbe02a7e0323e882fc276f13
parent 059efa4a676d64a9ee7eab9c85d7dad7c973202d
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed, 30 Dec 2009 23:22:08 +0000

Fix collection highlighting when dragging items in Firefox 3.6 (due to recent Fx change, I would think)


Diffstat:
Mchrome/content/zotero/xpcom/collectionTreeView.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/collectionTreeView.js b/chrome/content/zotero/xpcom/collectionTreeView.js @@ -1044,7 +1044,7 @@ Zotero.CollectionTreeView.prototype.canDrop = function(row, orient, dragData) return false; } - if (!dragData) { + if (!dragData || !dragData.data) { var dragData = Zotero.DragDrop.getDragData(this); } if (!dragData) {