Skip to content

Instantly share code, notes, and snippets.

@menacestudio
Created January 11, 2013 09:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save menacestudio/4509238 to your computer and use it in GitHub Desktop.
Save menacestudio/4509238 to your computer and use it in GitHub Desktop.
Handlebars: Load template with RequireJS
define(['handlebars','text'], function (Handlebars, text) {
var _buildMap = {};
var _buildTemplate = Handlebars.compile(
'define("{{pluginName}}!{{moduleName}}", ["handlebars"], function(Handlebars){'+
' return {{fn}}'+
'});\n'
);
return {
load: function (name, req, onLoad, config) {
fileName = name+'.hbs';
text.get(req.toUrl(fileName), function(data) {
if (config.isBuild) {
_buildMap[name] = Handlebars.precompile(data);
}
onLoad(Handlebars.compile(data));
});
},
write: function (pluginName, moduleName, writeModule) {
if(moduleName in _buildMap) {
var fn = _buildMap[moduleName];
writeModule(_buildTemplate({
pluginName : pluginName,
moduleName : moduleName,
fn : fn
}));
}
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment