www

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

commit cb8e226ae9765ffa18d00ec8d0e58da69dea5931
parent eb79a0f65946e9ab03c315f98ab2da4d3f34928f
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed, 28 Jan 2009 21:25:55 +0000

Addresses #513, Deleted Items folder

Missed in previous commit


Diffstat:
Mchrome/content/zotero/xpcom/notifier.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/xpcom/notifier.js b/chrome/content/zotero/xpcom/notifier.js @@ -86,7 +86,7 @@ Zotero.Notifier = new function(){ * Possible values: * * event: 'add', 'modify', 'delete', 'move' ('c', for changing parent), - * 'remove' (ci, it), 'refresh' + * 'remove' (ci, it), 'refresh', 'trash' * type - 'collection', 'search', 'item', 'collection-item', 'item-tag', 'tag' * ids - single id or array of ids * @@ -237,7 +237,7 @@ Zotero.Notifier = new function(){ var order = ['collection', 'search', 'item', 'collection-item', 'item-tag', 'tag']; _queue.sort(); - var order = ['add', 'modify', 'remove', 'move', 'delete']; + var order = ['add', 'modify', 'remove', 'move', 'delete', 'trash']; var totals = ''; for (var type in _queue) { if (!runQueue[type]) {