feature(util) ownRender: clean all params after render

This commit is contained in:
coderaiser 2014-03-04 03:24:15 -05:00
parent c5e9a4746a
commit 73806c4eae

View file

@ -601,6 +601,9 @@
ret = Util.replaceStr(ret, expr, str, notEscape);
}
expr = firstChar + '.*' + secondChar;
ret = Util.replaceStr(templ, expr, '', notEscape);
return ret;
};