Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Created April 26, 2016 14:07
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 marcusshepp/015b3745efdc3d7d97ec894678873cac to your computer and use it in GitHub Desktop.
Save marcusshepp/015b3745efdc3d7d97ec894678873cac to your computer and use it in GitHub Desktop.
Angular: using different template tags
var app = angular.module("myfirstapp", []);
app.config(["$interpolateProvider", function($interpolateProvider){
$interpolateProvider.startSymbol("{[");
$interpolateProvider.endSymbol("]}");
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment