├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── example └── index.html ├── ngprogress-lite.css ├── ngprogress-lite.js ├── ngprogress-lite.min.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | bower_components 4 | *.log -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronianski/ngprogress-lite/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronianski/ngprogress-lite/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronianski/ngprogress-lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronianski/ngprogress-lite/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronianski/ngprogress-lite/HEAD/bower.json -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronianski/ngprogress-lite/HEAD/example/index.html -------------------------------------------------------------------------------- /ngprogress-lite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronianski/ngprogress-lite/HEAD/ngprogress-lite.css -------------------------------------------------------------------------------- /ngprogress-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronianski/ngprogress-lite/HEAD/ngprogress-lite.js -------------------------------------------------------------------------------- /ngprogress-lite.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronianski/ngprogress-lite/HEAD/ngprogress-lite.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronianski/ngprogress-lite/HEAD/package.json --------------------------------------------------------------------------------