├── .babelrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── example ├── demo.gif ├── index-promises.html ├── index.html └── src │ ├── app.js │ └── app.promise.js ├── package.json ├── react-progress-button.css └── src └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/README.md -------------------------------------------------------------------------------- /example/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/example/demo.gif -------------------------------------------------------------------------------- /example/index-promises.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/example/index-promises.html -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/example/index.html -------------------------------------------------------------------------------- /example/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/example/src/app.js -------------------------------------------------------------------------------- /example/src/app.promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/example/src/app.promise.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/package.json -------------------------------------------------------------------------------- /react-progress-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/react-progress-button.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/react-progress-button/HEAD/src/index.js --------------------------------------------------------------------------------