Created
May 4, 2013 21:04
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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