├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── dist ├── circle-progress.js └── circle-progress.min.js ├── docs ├── examples.js ├── index.html └── styles.css ├── jsdoc.conf ├── karma-saucelabs.conf.js ├── karma.conf.js ├── package.json └── tests ├── images └── circle.png ├── index.html ├── test_utils.js └── tests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/bower.json -------------------------------------------------------------------------------- /dist/circle-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/dist/circle-progress.js -------------------------------------------------------------------------------- /dist/circle-progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/dist/circle-progress.min.js -------------------------------------------------------------------------------- /docs/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/docs/examples.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/docs/styles.css -------------------------------------------------------------------------------- /jsdoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/jsdoc.conf -------------------------------------------------------------------------------- /karma-saucelabs.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/karma-saucelabs.conf.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/package.json -------------------------------------------------------------------------------- /tests/images/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/tests/images/circle.png -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/test_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/tests/test_utils.js -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kottenator/jquery-circle-progress/HEAD/tests/tests.js --------------------------------------------------------------------------------