Skip to content

Instantly share code, notes, and snippets.

@1forh
Last active February 15, 2016 19:17
Show Gist options
  • Save 1forh/172ac83d2199d61bc655 to your computer and use it in GitHub Desktop.
Save 1forh/172ac83d2199d61bc655 to your computer and use it in GitHub Desktop.
// This changes the bracket syntax of Angular applications.
// Useful if you are using another templating system that uses {{}} brackets Ex. Handlebars
appModule.config(function($interpolateProvider) {
$interpolateProvider.startSymbol('{[');
$interpolateProvider.endSymbol(']}');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment