You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
622 B
25 lines
622 B
1 year ago
|
(function(){
|
||
|
var cache = {};
|
||
|
|
||
|
this.tmpl = function (str, data){
|
||
|
var fn = !/\W/.test(str) ?
|
||
|
cache[str] = cache[str] ||
|
||
|
tmpl(document.getElementById(str).innerHTML) :
|
||
|
|
||
|
new Function("obj",
|
||
|
"var p=[],print=function(){p.push.apply(p,arguments);};" +
|
||
|
"with(obj){p.push('" +
|
||
|
|
||
|
str
|
||
|
.replace(/[\r\t\n]/g, " ")
|
||
|
.split("<%").join("\t")
|
||
|
.replace(/((^|%>)[^\t]*)'/g, "$1\r")
|
||
|
.replace(/\t=(.*?)%>/g, "',$1,'")
|
||
|
.split("\t").join("');")
|
||
|
.split("%>").join("p.push('")
|
||
|
.split("\r").join("\\'")
|
||
|
+ "');}return p.join('');");
|
||
|
|
||
|
return data ? fn( data ) : fn;
|
||
|
};
|
||
|
})();
|