Skip to content

Instantly share code, notes, and snippets.

@SpencerCooley
Created April 7, 2015 19:59
Show Gist options
  • Save SpencerCooley/23ff12025e68b8663eb3 to your computer and use it in GitHub Desktop.
Save SpencerCooley/23ff12025e68b8663eb3 to your computer and use it in GitHub Desktop.
var Template = {
generic: function(selector, context ){
var source = $("#"+selector).html();
var template = Handlebars.compile(source);
var html = template(context)
return html
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment