www

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

commit da49efb0328d296c7813a14bbf9512156394e1ba
parent 0d9cddaa34ab96dfc05cfe78efee5034a68dfea2
Author: Simon Kornblith <simon@simonster.com>
Date:   Sat,  3 Sep 2011 23:34:55 +0000

Fix for IE JS bug


Diffstat:
Mchrome/content/zotero/xpcom/connector/cachedTypes.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/connector/cachedTypes.js b/chrome/content/zotero/xpcom/connector/cachedTypes.js @@ -42,7 +42,7 @@ Zotero.Connector_Types = new function() { for(var i=0; i<schemaTypes.length; i++) { var schemaType = schemaTypes[i]; this[schemaType] = Zotero.Utilities.deepCopy(Zotero.Connector_Types.schema[schemaType]); - for(var id in this[schemaType]) { + for(var id in Zotero.Connector_Types.schema[schemaType]) { var entry = this[schemaType][id]; entry.id = parseInt(id); this[schemaType][entry.name] = entry;