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 257 forks source link

Suggestion: Use ng-bind-html in default template #87

Open dmitry-dedukhin opened 9 years ago

dmitry-dedukhin commented 9 years ago

Often, busy message has three dots at the end, which are coded as &hellip; in html. I suggest to change default template: <div class="cg-busy-default-text">{{$message}}</div> to <div class="cg-busy-default-text" ng-bind-html="$message"></div> So, one can write something like this: <div cg-busy="{promise: somePromise, message: 'Loading&hellip;'}">