├── .babelrc ├── .bithoundrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo ├── App.jsx ├── Demo.jsx ├── images │ ├── bgnoise_lg.png │ ├── pathsegments.svg │ └── segments.svg ├── index.html ├── index.js ├── main.css ├── script.html └── script.js ├── dist ├── index.js ├── react-svgpathplayer.js ├── react-svgpathplayer.js.map ├── react-svgpathplayer.min.js └── react-svgpathplayer.min.js.map ├── karma.conf.js ├── lib ├── deploy_gh_pages.js └── post_install.js ├── package.json ├── src ├── _glyphicon_spin.scss ├── controls.jsx ├── index.js ├── spinner.jsx ├── svgpathplayer.jsx └── svgpathplayer.scss ├── tests ├── test_controls.js ├── test_spinner.js └── test_svgpathplayer.js └── webpack.config.babel.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/.babelrc -------------------------------------------------------------------------------- /.bithoundrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/.bithoundrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | gh-pages/ 2 | dist/ 3 | build/ 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/README.md -------------------------------------------------------------------------------- /demo/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/demo/App.jsx -------------------------------------------------------------------------------- /demo/Demo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/demo/Demo.jsx -------------------------------------------------------------------------------- /demo/images/bgnoise_lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/demo/images/bgnoise_lg.png -------------------------------------------------------------------------------- /demo/images/pathsegments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/demo/images/pathsegments.svg -------------------------------------------------------------------------------- /demo/images/segments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/demo/images/segments.svg -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/demo/main.css -------------------------------------------------------------------------------- /demo/script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/demo/script.html -------------------------------------------------------------------------------- /demo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/demo/script.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/react-svgpathplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/dist/react-svgpathplayer.js -------------------------------------------------------------------------------- /dist/react-svgpathplayer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/dist/react-svgpathplayer.js.map -------------------------------------------------------------------------------- /dist/react-svgpathplayer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/dist/react-svgpathplayer.min.js -------------------------------------------------------------------------------- /dist/react-svgpathplayer.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/dist/react-svgpathplayer.min.js.map -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/karma.conf.js -------------------------------------------------------------------------------- /lib/deploy_gh_pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/lib/deploy_gh_pages.js -------------------------------------------------------------------------------- /lib/post_install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/lib/post_install.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/package.json -------------------------------------------------------------------------------- /src/_glyphicon_spin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/src/_glyphicon_spin.scss -------------------------------------------------------------------------------- /src/controls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/src/controls.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./svgpathplayer'); 2 | -------------------------------------------------------------------------------- /src/spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/src/spinner.jsx -------------------------------------------------------------------------------- /src/svgpathplayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/src/svgpathplayer.jsx -------------------------------------------------------------------------------- /src/svgpathplayer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/src/svgpathplayer.scss -------------------------------------------------------------------------------- /tests/test_controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/tests/test_controls.js -------------------------------------------------------------------------------- /tests/test_spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/tests/test_spinner.js -------------------------------------------------------------------------------- /tests/test_svgpathplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/tests/test_svgpathplayer.js -------------------------------------------------------------------------------- /webpack.config.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschwarz/react-svgpathplayer/HEAD/webpack.config.babel.js --------------------------------------------------------------------------------