Closed stephanebachelier closed 10 years ago
It fixes #108 as it add the global namespace and not the last one defined.
The test should be explicit as it return this["JST"] instead of this["JST"]["treeNav"]["leaves"].
this["JST"]
this["JST"]["treeNav"]["leaves"]
define(['handlebars', 'handlebars.helpers'], function(Handlebars) { this["JST"] = this["JST"] || {}; this["JST"]["countries"] = this["JST"]["countries"] || {}; this["JST"]["countries"]["basic"] = Handlebars.template({"compiler":[6,">= 2.0.0-beta.1"],"main":function(depth0,helpers,partials,data) { return "Basic template that does nothing."; },"useData":true}); this["JST"]["treeNav"] = this["JST"]["treeNav"] || {}; this["JST"]["treeNav"]["leaves"] = this["JST"]["treeNav"]["leaves"] || {}; this["JST"]["treeNav"]["leaves"]["basic"] = Handlebars.template({"compiler":[6,">= 2.0.0-beta.1"],"main":function(depth0,helpers,partials,data) { return "Basic template that does nothing."; },"useData":true}); return this["JST"]; });```
It fixes #108 as it add the global namespace and not the last one defined.
The test should be explicit as it return
this["JST"]
instead ofthis["JST"]["treeNav"]["leaves"]
.