├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── demo ├── demo.html └── scripts │ └── jquery-1.11.3.min.js ├── dist ├── roundslider.css ├── roundslider.js ├── roundslider.min.css └── roundslider.min.js ├── gulpfile.js ├── images ├── Browserstack-logo.png ├── appearances.png └── sliders.png ├── package.json └── src ├── roundslider.css └── roundslider.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | last 1 version 2 | > 5% 3 | ie >= 9 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/bower.json -------------------------------------------------------------------------------- /demo/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/demo/demo.html -------------------------------------------------------------------------------- /demo/scripts/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/demo/scripts/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /dist/roundslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/dist/roundslider.css -------------------------------------------------------------------------------- /dist/roundslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/dist/roundslider.js -------------------------------------------------------------------------------- /dist/roundslider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/dist/roundslider.min.css -------------------------------------------------------------------------------- /dist/roundslider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/dist/roundslider.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/Browserstack-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/images/Browserstack-logo.png -------------------------------------------------------------------------------- /images/appearances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/images/appearances.png -------------------------------------------------------------------------------- /images/sliders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/images/sliders.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/package.json -------------------------------------------------------------------------------- /src/roundslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/src/roundslider.css -------------------------------------------------------------------------------- /src/roundslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundar24/roundSlider/HEAD/src/roundslider.js --------------------------------------------------------------------------------