Skip to content

Instantly share code, notes, and snippets.

@GianlucaGuarini
Forked from berzniz/gist:2900905
Created May 23, 2013 19:14
Show Gist options
  • Save GianlucaGuarini/5638662 to your computer and use it in GitHub Desktop.
Save GianlucaGuarini/5638662 to your computer and use it in GitHub Desktop.
Handlebars.getTemplate = function(name) {
if (Handlebars.templates === undefined || Handlebars.templates[name] === undefined) {
$.ajax({
url : 'templatesfolder/' + name + '.handlebars',
success : function(data) {
if (Handlebars.templates === undefined) {
Handlebars.templates = {};
}
Handlebars.templates[name] = Handlebars.compile(data);
},
async : false
});
}
return Handlebars.templates[name];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment