Fix child item drag on Windows in Firefox 41
This commit is contained in:
parent
310ff1cf53
commit
7f8cf293d0
1 changed files with 1 additions and 1 deletions
|
@ -2600,7 +2600,7 @@ Zotero.ItemTreeCommandController.prototype.onEvent = function(evt)
|
||||||
Zotero.ItemTreeView.prototype.onDragStart = function (event) {
|
Zotero.ItemTreeView.prototype.onDragStart = function (event) {
|
||||||
// See note in LibraryTreeView::_setDropEffect()
|
// See note in LibraryTreeView::_setDropEffect()
|
||||||
if (Zotero.isWin) {
|
if (Zotero.isWin) {
|
||||||
event.dataTransfer.effectAllowed = 'copy';
|
event.dataTransfer.effectAllowed = 'copyMove';
|
||||||
}
|
}
|
||||||
|
|
||||||
var itemIDs = this.saveSelection();
|
var itemIDs = this.saveSelection();
|
||||||
|
|
Loading…
Reference in a new issue