ngProgress icon indicating copy to clipboard operation
ngProgress copied to clipboard

⏳ Angular provider for slim loading bar at the top of the page ( inspired by https://github.com/rstacruz/nprogress )

Results 22 ngProgress issues
Sort by recently updated
recently updated
newest added

any idea on how to put text inside the progress bar, something like slack when uploading file?

enhancement

The problem exist only on safari. Line this.parent = $document.find('body')[0];//this.parent = undefined; ... this.parent.appendChild(this.progressbarEl[0]);//thows error throws error: TypeError: 'undefined' is not an object (evaluating 'this.parent.appendChild') Can you please replace it...

Minor enhancement that I think would improve its behaviour. Currently I start the bar if a timer exceeds 300ms, but I always complete it when a state has loaded, but...

Allows to add custom class to the base element (ngProgress-container). This feature allow to add custom css (like as background) while it's progressing. ![capture](https://cloud.githubusercontent.com/assets/1624573/19018542/4ffcee70-8866-11e6-9be5-0ce066f28c08.PNG)

1. re-indented according to `.editorconfig` settings 2. switched to Firefox cause PhantomJS does not know about `requestAnimationFrame` 3. added `grunt` to dev dependencies to be independent of system wide installed...

![capture d ecran 2016-05-24 a 11 38 13](https://cloud.githubusercontent.com/assets/67528/15499439/8e00326e-21a4-11e6-8cff-8e8092e0b449.png) That is weird I have installed it that way: package.json ``` "ngprogress": "VictorBjelkholm/ngProgress#v1.1.3", ``` then include resources: ``` "node_modules/ngprogress/build/ngProgress.min.js", "node_modules/ngprogress/ngProgress.css", ``` app.js...

question

After performing a `bower install`, following the checkout, Bower returned the following: ``` bower invalid-meta The "main" field cannot contain minified files ```

bug

Here's a sample of `run()` method ``` angular .module('portal', dependencies) .run(['$rootScope', '$http', 'ngProgress', 'NotifyService', function($rootScope, $http, ngProgress, Notify) { ngProgress.color('#66afda'); $rootScope.pendingRequests = $http.pendingRequests; $rootScope.$watch('pendingRequests', function(requests) { ngProgress[requests.length !== 0 ?...

enhancement