Skip to content

Instantly share code, notes, and snippets.

@zefei
Created September 1, 2014 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zefei/17b29d6bf03417c2122d to your computer and use it in GitHub Desktop.
Save zefei/17b29d6bf03417c2122d to your computer and use it in GitHub Desktop.
Using Angular and Meteor together: template delimiter
// change Angular's template delimiter to [[...]]
angular.module('myApp')
.config(['$interpolateProvider',
function($interpolateProvider) {
$interpolateProvider.startSymbol('[[').endSymbol(']]');
}
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment