From 2fce1778bfe7c045700661467d2e9e3d2eb20fad Mon Sep 17 00:00:00 2001 From: thegrandpoobah Date: Mon, 19 Jul 2010 13:28:51 -0400 Subject: [PATCH] Remove extra comma --- mustache.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mustache.js b/mustache.js index 8a883c8..109d01c 100644 --- a/mustache.js +++ b/mustache.js @@ -5,9 +5,10 @@ */ var Mustache = function() { - var ParserException = function(message) { + function ParserException(message) { this.message = message; } + ParserException.prototype = {}; var Renderer = function(send_func, mode) { this.user_send_func = send_func; @@ -144,7 +145,7 @@ var Mustache = function() { partials: partials, stack: [], openTag: openTag, - closeTag: closeTag, + closeTag: closeTag }; },