Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Last active August 29, 2015 14:18
Show Gist options
  • Save unknownuser88/9e5f2465823249aa1851 to your computer and use it in GitHub Desktop.
Save unknownuser88/9e5f2465823249aa1851 to your computer and use it in GitHub Desktop.
tmpl facede (_)
var tmpl = (function(_, $) {
function render(teplate, data) {
return _.template($("#" + teplate).html())(data);
}
return {
render: render
};
})(_, $);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment