angular-loading-overlay
angular-loading-overlay copied to clipboard
no errors
no errors, but it wont start/stop the overlay, nothing happends.
Hi, thanks for the report.
Could you add some details? How do you use the module?
angular
.module('airport',[ "bsLoadingOverlay"])
airportController.$inject = ['airportService','$scope','$timeout','bsLoadingOverlayService'];
function airportController(airportService,$scope,$timeout,bsLoadingOverlayService) {
var vm = this;
bsLoadingOverlayService.start();
and
<div class="row-fluid" bs-loading-overlay>
+1 followed basic instructions with similar code to the above, nothing happens angular 1.5.5, does this require bootstrap or something?
Doesn't work for me either, same setup.
You guys probably need to read the detailed docs on this page: http://bsalex.github.io/angular-loading-overlay/_site/ Basically, you need to supply your own overlay file for it to work.
@SargeKhan I've read the docs here and it mentions using loading-overlay-template.html
as your own overlay file but I can't find a simple example of what this template should look like. Could you provide an example?
Same issue here. I am using angular 1.6
Same issue, and fixed by adding the missing angular template
http://bsalex.github.io/angular-loading-overlay/_site/loading-overlay-template.html
<script type="text/ng-template" id="loading-overlay-template.html">
put html content of the page here
</script>