Fix child item drag on Windows in Firefox 41

This commit is contained in:
Dan Stillman 2015-10-02 03:50:01 -04:00
parent 310ff1cf53
commit 7f8cf293d0

View file

@ -2600,7 +2600,7 @@ Zotero.ItemTreeCommandController.prototype.onEvent = function(evt)
Zotero.ItemTreeView.prototype.onDragStart = function (event) {
// See note in LibraryTreeView::_setDropEffect()
if (Zotero.isWin) {
event.dataTransfer.effectAllowed = 'copy';
event.dataTransfer.effectAllowed = 'copyMove';
}
var itemIDs = this.saveSelection();