I created Zotero.Item.isImportedAttachment() on opposite day

This commit is contained in:
Dan Stillman 2009-08-21 05:30:51 +00:00
parent 3db1d08bdf
commit 87e2924984

View file

@ -2391,9 +2391,9 @@ Zotero.Item.prototype.isImportedAttachment = function() {
}
var linkMode = this.attachmentLinkMode;
if (linkMode == Zotero.Attachments.LINK_MODE_IMPORTED_FILE || linkMode == Zotero.Attachments.LINK_MODE_IMPORTED_URL) {
return false;
return true;
}
return true;
return false;
}