Skip to content

Instantly share code, notes, and snippets.

@dkgrieshammer
Created November 26, 2013 15:47
Show Gist options
  • Save dkgrieshammer/7660728 to your computer and use it in GitHub Desktop.
Save dkgrieshammer/7660728 to your computer and use it in GitHub Desktop.
Backbone: rawTemplate
(function() {
window.App = {
Models: {},
Collections: {},
Views: {}
};
window.template = function(id) {
return _.template( $('#' + id).html() );
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment