ng-components-queue
AngularJS components-queue with promise-support. Great for building stacked modal dialogs.
!
npm version !
dependencies
This component allows you to stack components inside of a queue. Every component gets passed a promise which, whenever its resolved / rejected, will remove the component from the queue. If the parent scope is destroyed, the child-components can be removed from the queue automatically. This is great when building complex applications with stacked modal dialogs.
---
$3
``
shell
npm i ng-components-queue
`
---
$3
`
html
`
$3
`
html
`
$3
`
html
`
$3
`
javascript
angular.module('app', ['rckd.utils']);
``
Now you are ready to rumble!
---
Usage
Check this
fiddle for a simple dialog-example.