angular-busy
angular-busy copied to clipboard
Show busy/loading indicators on any element during $http requests (or any promise).
Hi everyone. Do you know how to put cgbusy working with angular 1.x and ES6?
I really like this component. Actually my application is in Angular 6.0. Do you this component which can be used in latest angular version ?
I'm using minDuration because the action is quick but I'm "Checking for updates ..." and I want to leave it up long enough for them to read. ``` ... ```...
These changes adds a busy indicator class to cg-busy container when loader is running. The default class is `cg-busy-active` which can be overridden using `busyClass` option
In particular the $http.success method, has been deprecated. Here is a link to all of the other breaking changes. https://github.com/angular/angular.js/blob/master/CHANGELOG.md
The idea is to eliminate the need for a programmer to manually set cg busy promises. Instead, have an http request interceptor push each http request promise to a cg...
Can this be implemented without promises? Sometimes I have long running client side code that doesn't involve $http or other promise-based calls. Can I still show the spinner (without creating...
Related also to issue https://github.com/cgross/angular-busy/issues/68 In case I change cg-busy _unresolved_ promise with a new _unresolved_ promise - the tracker.reset is not begin called. This is due the use of...
An empty message causes the spinner to show with the background (`.cg-busy-default-sign`) not including the entire spinner:  This is the attribute I'm currently using: `cg-busy="{promise:myPromise,message:''}"`...