You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Often, busy message has three dots at the end, which are coded as … 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…'}">
The text was updated successfully, but these errors were encountered:
Often, busy message has three dots at the end, which are coded as
…
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…'}">
The text was updated successfully, but these errors were encountered: