Skip to content

Instantly share code, notes, and snippets.

@tomdale
Created August 9, 2011 16:53
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tomdale/1134558 to your computer and use it in GitHub Desktop.
Save tomdale/1134558 to your computer and use it in GitHub Desktop.
Load remote Handlebars templates
jQuery.get('/templates/foo.handlebars', function(data) {
var template = SC.Handlebars.compile(data);
SC.TEMPLATES['foo'] = template;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment