Skip to content

Instantly share code, notes, and snippets.

@julesbou
Last active March 11, 2016 17:14
Show Gist options
  • Save julesbou/e4da8c7f5a21f7c1015a to your computer and use it in GitHub Desktop.
Save julesbou/e4da8c7f5a21f7c1015a to your computer and use it in GitHub Desktop.
// underscorejs version
Backbone.View.prototype.template = function(tmpl, params) {
return _.template(tmpl, params);
};
// handlebars version
Backbone.View.prototype.template = function(tmpl, params) {
return tmpl(params);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment