From bafad27311f3e51daf35d6ced23cd30a3c3de256 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Mon, 15 Apr 2013 15:15:01 -0400 Subject: [PATCH] IE doesn't support normalize --- 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 index 54edc41a7..1cc1df643 100644 --- 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; },