Service and directive to manipulate overlays on async operations.
npm install angular-loading-overlay




The module provides your app with overlays (like "Loading...") that could be shown on async operations.
It supports multiple independent named overlays on one page.
It also allows you to create preconfigured handlers and wrap promises to show and hide overlays on promise work started and finished.
The module has integration with Spin.js via angular-loading-overlay-spinjs.
See Docs & Examples for more information.
Should you have any questions, feel free to contact me on Gitter 
bower install --save angular-loading-overlay npm install --save angular-loading-overlayjavascript
angular.module("your nodule name", [
"bsLoadingOverlay"
]);
angular.module("your nodule name")
.controller(function ($timeout, bsLoadingOverlayService) {
bsLoadingOverlayService.start();
$timeout(bsLoadingOverlayService.stop, 5000);
});
``
$3
``html
loaded data usage here
``
License
Copyright (c) 2016 Oleksandr Beshchuk <bs.alex.mail@gmail.com>
Licensed under the Apache License.
Contributing
1. Fork the repo
1.
npm install
1. npm run prepare-development
1. npm run test:watch
1. Make your changes, add your tests
1. npm run build`