Close #932, Disable file dragging into My Publications

Already disabled for collections pane, now for items pane
This commit is contained in:
Dan Stillman 2017-04-16 03:35:02 -04:00
parent d0b1a45c61
commit 8a7d405e4d

View file

@ -2960,8 +2960,8 @@ Zotero.ItemTreeView.prototype.canDropCheck = function (row, orient, dataTransfer
return false;
}
}
// Don't allow drop into searches
else if (collectionTreeRow.isSearch()) {
// Don't allow drop into searches or publications
else if (collectionTreeRow.isSearch() || collectionTreeRow.isPublications()) {
return false;
}