commit bafad27311f3e51daf35d6ced23cd30a3c3de256 parent 80b10184b0f91bdf49c17df1aacd9f8267438cac Author: Simon Kornblith <simon@simonster.com> Date: Mon, 15 Apr 2013 15:15:01 -0400 IE doesn't support normalize Diffstat:
| M | chrome/content/zotero/xpcom/translation/translate.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/translation/translate.js b/chrome/content/zotero/xpcom/translation/translate.js @@ -2307,7 +2307,7 @@ Zotero.Translate.IO = { throw "DOMParser error: loading data into data store failed"; } - nodes.normalize(); + if("normalize" in nodes) nodes.normalize(); return nodes; },