From d239e6e4ba4e56d3c99dea52b54fafb758710eb0 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 20 Jun 2006 15:28:20 +0000 Subject: [PATCH] Typo in trigger() call in Collection.addItem() (thanks David) --- chrome/chromeFiles/content/scholar/xpcom/data_access.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/chromeFiles/content/scholar/xpcom/data_access.js b/chrome/chromeFiles/content/scholar/xpcom/data_access.js index cc5dc8d43b..d317eb23c8 100644 --- a/chrome/chromeFiles/content/scholar/xpcom/data_access.js +++ b/chrome/chromeFiles/content/scholar/xpcom/data_access.js @@ -1289,7 +1289,7 @@ Scholar.Collection.prototype.addItem = function(itemID){ // If this was previously empty, update and send a notification to the tree if (!this._hasChildItems){ this._hasChildItems = true; - Scholar.Notifier.trigger('modify', 'collections', this.getID()); + Scholar.Notifier.trigger('modify', 'collection', this.getID()); } Scholar.Notifier.trigger('add', 'item', itemID);