bsalex/angular-loading-overlay

Loading doesn't stop

Closed this issue · 1 comments

ZeVaZ commented

I used the example with the template and when the service starts everything it's ok, the problem appears when it needs to stop. I just doesn't do anything, no errors, no misbeheavior, nothing..

Any tips?

Html:

Show overlay
Hide overlay

Some content here

Controller:

$scope.showOverlay = function () {
bsLoadingOverlayService.start();
};

$scope.hideOverlay = function () {
bsLoadingOverlayService.stop();
};

ZeVaZ commented

Turns out, that removing the comment in the first line of the template, fixes de issue.
thanks