cgross / angular-busy

Show busy/loading indicators on any element during $http requests (or any promise).
http://cgross.github.io/angular-busy/demo
MIT License
1.44k stars 256 forks source link

Cannot print messages with custom interpolators #97

Open ldynia opened 8 years ago

ldynia commented 8 years ago

I have django app that is using {{ }} for printing content in the html templates files. The common solution for angular to play with django is to override angular interpolators e.g:

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

Doing so I lost ability of print messages in cg-busy directive. Any idea how to fix it ?