Guest User

Untitled

a guest
Dec 11th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Backbone.View.prototype.template = _.memoize(function(id){
  2. var element = document.getElementById(id);
  3.  
  4. if (element)
  5. return _.template(element.innerHTML);
  6. else
  7. throw new Error('Could not find template '+id);
  8. });
Add Comment
Please, Sign In to add comment