angular-loading-overlay icon indicating copy to clipboard operation
angular-loading-overlay copied to clipboard

no errors

Open frkwhiteangel opened this issue 8 years ago • 8 comments

no errors, but it wont start/stop the overlay, nothing happends.

frkwhiteangel avatar Sep 05 '16 08:09 frkwhiteangel

Hi, thanks for the report.

Could you add some details? How do you use the module?

bsalex avatar Sep 05 '16 15:09 bsalex

  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>

frkwhiteangel avatar Sep 05 '16 15:09 frkwhiteangel

+1 followed basic instructions with similar code to the above, nothing happens angular 1.5.5, does this require bootstrap or something?

clubery avatar Sep 22 '16 15:09 clubery

Doesn't work for me either, same setup.

Doug-Shannon avatar Sep 28 '16 00:09 Doug-Shannon

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 avatar Sep 29 '16 12:09 SargeKhan

@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?

emmetog avatar Apr 25 '17 18:04 emmetog

Same issue here. I am using angular 1.6

helloanoop avatar Sep 05 '17 14:09 helloanoop

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>

msidhoum avatar Jan 16 '18 15:01 msidhoum