├── .editorconfig ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── dist ├── progress-button.min.css └── progress-button.min.js ├── example ├── index.html ├── script.js └── style.css ├── karma.conf.js ├── package.json ├── src ├── progress-button.css └── progress-button.js └── test └── progress-button.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /tmp/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/bower.json -------------------------------------------------------------------------------- /dist/progress-button.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/dist/progress-button.min.css -------------------------------------------------------------------------------- /dist/progress-button.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/dist/progress-button.min.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/example/index.html -------------------------------------------------------------------------------- /example/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/example/script.js -------------------------------------------------------------------------------- /example/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/example/style.css -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/package.json -------------------------------------------------------------------------------- /src/progress-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/src/progress-button.css -------------------------------------------------------------------------------- /src/progress-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/src/progress-button.js -------------------------------------------------------------------------------- /test/progress-button.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicdoe/angular-progress-button/HEAD/test/progress-button.spec.js --------------------------------------------------------------------------------