From 37b6a14f177ed27315b5d2c519f8fac45aa6c6e1 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 31 Oct 2015 01:36:49 -0400 Subject: [PATCH] Fix attachment pane loading --- chrome/content/zotero/zoteroPane.js | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index 0126a10cb9..64617cc435 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -1325,6 +1325,7 @@ var ZoteroPane = new function() else if (item.isAttachment()) { var attachmentBox = document.getElementById('zotero-attachment-box'); attachmentBox.mode = this.collectionsView.editable ? 'edit' : 'view'; + yield item.loadItemData(); yield item.loadNote(); attachmentBox.item = item;