www

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

commit b1275032f58e828a30b3194748e58577d9b15def
parent 7fa67b32d483766cfd5f864692645324f07cbd09
Author: Simon Kornblith <simon@simonster.com>
Date:   Tue, 27 Sep 2011 14:51:15 +0000

Fix dragging links to Z standalone


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

diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js @@ -3159,7 +3159,7 @@ var ZoteroPane = new function() this.addItemFromURL = function (url, itemType, saveSnapshot, row) { - if (url == window.content.document.location.href) { + if (window.content && url == window.content.document.location.href) { return this.addItemFromPage(itemType, saveSnapshot, row); }