From a160c16d902cea966fcda4561d702a4f97b1ca76 Mon Sep 17 00:00:00 2001 From: Michael Jackson Date: Wed, 1 Aug 2012 22:46:37 -0700 Subject: [PATCH] Remove ignored argument --- mustache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mustache.js b/mustache.js index 36a478a..d0f7503 100644 --- a/mustache.js +++ b/mustache.js @@ -303,7 +303,7 @@ var Mustache; var fn = this._partialCache[name]; if (fn) { - return fn(context, this); + return fn(context); } return "";