Skip to content

Instantly share code, notes, and snippets.

@xtrasmal
Created May 4, 2013 21:04
Show Gist options
  • Select an option

  • Save xtrasmal/5518721 to your computer and use it in GitHub Desktop.

Select an option

Save xtrasmal/5518721 to your computer and use it in GitHub Desktop.
Angular JS. Change {{ }} to (( )) so you can use it within Laravel blade templates.
var m = angular.module('myApp', []);
m.config(function($interpolateProvider) { $interpolateProvider.startSymbol('(('); $interpolateProvider.endSymbol('))'); });
return m;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment