From 25d0c02b715b8474607d2fd9bf372ce48711c5dd Mon Sep 17 00:00:00 2001 From: Ben Cherry Date: Mon, 6 Dec 2010 17:38:41 -0800 Subject: [PATCH] don't render during i18n step, just do replacements --- mustache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mustache.js b/mustache.js index 78c0574..857193d 100644 --- a/mustache.js +++ b/mustache.js @@ -138,7 +138,7 @@ var Mustache = function() { translation_mode = { _mode: context['_mode'] }; } - return that.render(_(content, translation_mode), context, partials, true); + return _(content, translation_mode); }); },