├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── dist ├── angular-promise-buttons.js └── angular-promise-buttons.min.js ├── example ├── dev.html ├── example1.html ├── index.html ├── scripts │ └── example.js └── style.css ├── karma.conf.js ├── package.json ├── src ├── _angular-promise-buttons.js ├── angular-promise-buttons-p.js ├── angular-promise-buttons-p.spec.js ├── promise-btn-d.js ├── promise-btns-d.spec.js ├── styles │ ├── _default-button.scss │ └── style.scss └── tpls.js └── wallaby.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/bower.json -------------------------------------------------------------------------------- /dist/angular-promise-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/dist/angular-promise-buttons.js -------------------------------------------------------------------------------- /dist/angular-promise-buttons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/dist/angular-promise-buttons.min.js -------------------------------------------------------------------------------- /example/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/example/dev.html -------------------------------------------------------------------------------- /example/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/example/example1.html -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/example/index.html -------------------------------------------------------------------------------- /example/scripts/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/example/scripts/example.js -------------------------------------------------------------------------------- /example/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/example/style.css -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/package.json -------------------------------------------------------------------------------- /src/_angular-promise-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/src/_angular-promise-buttons.js -------------------------------------------------------------------------------- /src/angular-promise-buttons-p.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/src/angular-promise-buttons-p.js -------------------------------------------------------------------------------- /src/angular-promise-buttons-p.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/src/angular-promise-buttons-p.spec.js -------------------------------------------------------------------------------- /src/promise-btn-d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/src/promise-btn-d.js -------------------------------------------------------------------------------- /src/promise-btns-d.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/src/promise-btns-d.spec.js -------------------------------------------------------------------------------- /src/styles/_default-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/src/styles/_default-button.scss -------------------------------------------------------------------------------- /src/styles/style.scss: -------------------------------------------------------------------------------- 1 | @import "default-button"; 2 | -------------------------------------------------------------------------------- /src/tpls.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesjo/angular-promise-buttons/HEAD/wallaby.js --------------------------------------------------------------------------------