Skip to content

Instantly share code, notes, and snippets.

@preslavrachev
Created March 22, 2015 07:14
Show Gist options
  • Save preslavrachev/6f3623df0ed849a99514 to your computer and use it in GitHub Desktop.
Save preslavrachev/6f3623df0ed849a99514 to your computer and use it in GitHub Desktop.
Setting up a different binding delimiter in AngularJS. From http://stackoverflow.com/questions/12923521/angular-js-custom-delimiter
var myApp = angular.module('myApp', [], function($interpolateProvider) {
$interpolateProvider.startSymbol('[[');
$interpolateProvider.endSymbol(']]');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment