1.1.0 • Published 7 years ago

ng-on-http-stable v1.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

ng-on-http-stable

angular directive that renders when there are no $http outstanding requests

#Purpose This directive was created to delay the downloading of tracking scripts, it can, however, be used for any other purpose.

##Usage The directive should be placed in after the code which will be making the requests. Making it the last element in your page is always a good approach :).

##directive

<ng-on-http-stable>
  <p>This will render when the $http service as no more pending calls</p>
</ng-on-http-stable>

##service A service is also available.

onHttpStableService.notifyWhenStable(function () {
    //execute logic
});