angular2-busy
angular2-busy copied to clipboard
Show busy/loading indicators on any promise, or on any Observable's subscription.
Hi! Thank you for this component! It's very usefull when working sith API. But can you help me with one issue: I use my template for loader: ``` BusyModule.forRoot(` new...
It looks like angular2-busy is working with Angular 4.3 but the styles are broken. I just see "Please wait..." in the standard font on the left top edge of my...
Hey, I run a pretty complex application and need to dynamically change the subscriptions inside busy. This works quite well sometimes and sometimes not. Sometimes, I don't understand why, I...
It turns out that using a configuration object, you can set the `busy` property to a boolean to start/stop the indicator, but the documentation wasn't clear on this. This clarifies...
Is there a simple way to show/hide the loading component **without** assigning it to a promise? I mean just by Showing/Hiding it directly via a component?
For some reason this happens when I use Prod Mode (ng build --prod): ``` vendor.55c6bfa….bundle.js:1 ERROR Error: Uncaught (in promise): Error: Cannot find module 'app/modules/content/content.module'. Error: Cannot find module 'app/modules/content/content.module'....
Hi, I'm having the following code testing the module: `import { Component, OnInit } from '@angular/core'; import { Subscription } from "rxjs/Subscription"; import { Observable } from "rxjs/Observable"; import {...
If this component is created for promise or one time subscription, it's fine. But normally whenever subscription is mentioned, people assume it's a continuous stream. And to be honest, spinner...
My config : angular-cli: 1.0.0-beta.17 node: 5.6.0 os: win32 x64 I'am trying to customize the oading spinner like indicated in the doc by adding : `BusyModule.forRoot( new BusyConfig({ message: 'Don\'t...
The promise tracker service adds both a success and error handler, this means that any errors are not passed on after the promise is bound to ngBusy. It would be...