From a6e8ebab39bb5c539bacd5f40bf3dfabe9504d33 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 17 Oct 2013 08:26:01 +0000 Subject: [PATCH] feature(util) render: rm param, it is default --- lib/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.js b/lib/util.js index 2c15e775..c198141f 100644 --- a/lib/util.js +++ b/lib/util.js @@ -544,7 +544,7 @@ Util = exports || {}; * @pView */ Util.render = function(pTempl, pView) { - var lRet = Util.ownRender(pTempl, pView, ['{', '}']); + var lRet = Util.ownRender(pTempl, pView); return lRet; };