From 05d4971abb5b8e21c5d33a71771a961c7932206b Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Wed, 20 Oct 2010 23:17:59 -0700 Subject: fix some of the failing ie tests --- src/Parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Parser.js') diff --git a/src/Parser.js b/src/Parser.js index 7ad65f32..8dc8f9c2 100644 --- a/src/Parser.js +++ b/src/Parser.js @@ -93,7 +93,7 @@ function lex(text, parseStringsForObjects){ } function isWhitespace(ch) { return ch == ' ' || ch == '\r' || ch == '\t' || - ch == '\n' || ch == '\v'; + ch == '\n' || ch == '\v' || ch == '\u00A0'; // IE treats non-breaking space as \u00A0 } function isIdent(ch) { return 'a' <= ch && ch <= 'z' || -- cgit v1.2.3