Skip to content

Instantly share code, notes, and snippets.

@shaneriley
Created July 15, 2014 18:59
Show Gist options
  • Save shaneriley/99133ec9811161c2ea50 to your computer and use it in GitHub Desktop.
Save shaneriley/99133ec9811161c2ea50 to your computer and use it in GitHub Desktop.
Precompile all Handlebars templates
var templates = (function() {
var o = {};
$("[type=\"text/x-handlebars\"]").each(function() {
o[$(this).attr("data-id")] = Handlebars.compile(this.innerHTML);
});
return o;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment