angular-busy icon indicating copy to clipboard operation
angular-busy copied to clipboard

{{$message}} conflict with Twig

Open evaldoprestes opened this issue 11 years ago • 5 comments

The template below causes conflicts when using in templates Twig, showing only the message $ message {{}}. For those using Twig templates, you must change the default delimiters AngularJS. example:

interpolateProvider.startSymbol $ ('[['); interpolateProvider.endSymbol $ (']]');

To work, made ​​the following temporary change:

From:

$ {{message}} </ div> To:
[[$ message]] </ div>

evaldoprestes avatar Oct 21 '14 15:10 evaldoprestes

Same issue when using it with django. It should be probably use $interpolate.startSymbol() and $interpolate.endSymbol();

aldarund avatar Apr 14 '15 22:04 aldarund

I have created a pull request with fix for this https://github.com/cgross/angular-busy/pull/63

aldarund avatar Apr 15 '15 09:04 aldarund

I am experiencing same issue with django. Will the pr be merged soon?

th0th avatar Jul 06 '15 12:07 th0th

+1 Same thing here.

pbassut avatar Nov 23 '15 04:11 pbassut

+1

pinkgom avatar Aug 09 '16 06:08 pinkgom