feature(util) render: rm param, it is default

This commit is contained in:
coderaiser 2013-10-17 08:26:01 +00:00
parent aea63e7827
commit a6e8ebab39

View file

@ -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;
};