├── .gitignore ├── .npmignore ├── .travis.yml ├── History.md ├── License.md ├── Notes.md ├── Readme.md ├── bower.json ├── component.json ├── index.html ├── nprogress.css ├── nprogress.js ├── package.json ├── support ├── extras.css └── style.css └── test ├── component.html ├── index.html └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | components 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | vendor 2 | index.html 3 | support 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/History.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/License.md -------------------------------------------------------------------------------- /Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/Notes.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/Readme.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/bower.json -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/component.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/index.html -------------------------------------------------------------------------------- /nprogress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/nprogress.css -------------------------------------------------------------------------------- /nprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/nprogress.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/package.json -------------------------------------------------------------------------------- /support/extras.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/support/extras.css -------------------------------------------------------------------------------- /support/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/support/style.css -------------------------------------------------------------------------------- /test/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/test/component.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/test/index.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/nprogress/HEAD/test/test.js --------------------------------------------------------------------------------