13 lines
396 B
JavaScript
13 lines
396 B
JavaScript
|
this["MyApp"] = this["MyApp"] || {};
|
||
|
this["MyApp"]["JST"] = this["MyApp"]["JST"] || {};
|
||
|
this["MyApp"]["JST"]["Main"] = this["MyApp"]["JST"]["Main"] || {};
|
||
|
|
||
|
this["MyApp"]["JST"]["Main"]["test/fixtures/template.html"] = function(obj){
|
||
|
var __p='';var print=function(){__p+=Array.prototype.join.call(arguments, '')};
|
||
|
with(obj||{}){
|
||
|
__p+='<head><title>'+
|
||
|
( title )+
|
||
|
'</title></head>';
|
||
|
}
|
||
|
return __p;
|
||
|
};
|