Don't throw an error (accessing the document domain propety) when loading a Zotero report

This commit is contained in:
Dan Stillman 2007-01-02 22:15:41 +00:00
parent 8710875fdb
commit 8218ef7ec4

View File

@ -146,7 +146,12 @@ Zotero_Ingester_Interface.contentLoad = function(event) {
var doc = event.originalTarget;
var rootDoc = doc;
if(!doc.domain) {
try {
if (!doc.domain) {
return;
}
}
catch (e) {
return;
}