From ea553b511be8dff0ffeff0c8e8f9cab359bf3000 Mon Sep 17 00:00:00 2001 From: David Stone Date: Tue, 25 Jan 2011 10:24:53 -0800 Subject: [PATCH] IE 7 hates trailing commas --- lib/handlebars/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/handlebars/utils.js b/lib/handlebars/utils.js index 409a489a..981bb1f7 100644 --- a/lib/handlebars/utils.js +++ b/lib/handlebars/utils.js @@ -16,7 +16,7 @@ Handlebars.SafeString.prototype.toString = function() { (function() { var escape = { "<": "<", - ">": ">", + ">": ">" }; var badChars = /&(?!\w+;)|[<>]/g;