├── .gitignore ├── MIT-LICENSE.txt ├── Makefile ├── README.md ├── bin ├── jquery.slider.min.css └── jquery.slider.min.js ├── css ├── jslider.blue.css ├── jslider.css ├── jslider.plastic.css ├── jslider.round.css └── jslider.round.plastic.css ├── img ├── jslider.blue.png ├── jslider.plastic.png ├── jslider.png ├── jslider.round.plastic.png └── jslider.round.png ├── index.html ├── js ├── draggable-0.1.js ├── jquery-1.7.1.js ├── jquery.dependClass-0.1.js ├── jquery.numberformatter-1.2.3.js ├── jquery.slider.js ├── jshashtable-2.1_src.js └── tmpl.js ├── src └── skin.psd ├── tests ├── show_hide.html └── zero_value.html └── tools └── yuicompressor-2.4.7.jar /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/.gitignore -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/README.md -------------------------------------------------------------------------------- /bin/jquery.slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/bin/jquery.slider.min.css -------------------------------------------------------------------------------- /bin/jquery.slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/bin/jquery.slider.min.js -------------------------------------------------------------------------------- /css/jslider.blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/css/jslider.blue.css -------------------------------------------------------------------------------- /css/jslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/css/jslider.css -------------------------------------------------------------------------------- /css/jslider.plastic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/css/jslider.plastic.css -------------------------------------------------------------------------------- /css/jslider.round.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/css/jslider.round.css -------------------------------------------------------------------------------- /css/jslider.round.plastic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/css/jslider.round.plastic.css -------------------------------------------------------------------------------- /img/jslider.blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/img/jslider.blue.png -------------------------------------------------------------------------------- /img/jslider.plastic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/img/jslider.plastic.png -------------------------------------------------------------------------------- /img/jslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/img/jslider.png -------------------------------------------------------------------------------- /img/jslider.round.plastic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/img/jslider.round.plastic.png -------------------------------------------------------------------------------- /img/jslider.round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/img/jslider.round.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/index.html -------------------------------------------------------------------------------- /js/draggable-0.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/js/draggable-0.1.js -------------------------------------------------------------------------------- /js/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/js/jquery-1.7.1.js -------------------------------------------------------------------------------- /js/jquery.dependClass-0.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/js/jquery.dependClass-0.1.js -------------------------------------------------------------------------------- /js/jquery.numberformatter-1.2.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/js/jquery.numberformatter-1.2.3.js -------------------------------------------------------------------------------- /js/jquery.slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/js/jquery.slider.js -------------------------------------------------------------------------------- /js/jshashtable-2.1_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/js/jshashtable-2.1_src.js -------------------------------------------------------------------------------- /js/tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/js/tmpl.js -------------------------------------------------------------------------------- /src/skin.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/src/skin.psd -------------------------------------------------------------------------------- /tests/show_hide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/tests/show_hide.html -------------------------------------------------------------------------------- /tests/zero_value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/tests/zero_value.html -------------------------------------------------------------------------------- /tools/yuicompressor-2.4.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egorkhmelev/jslider/HEAD/tools/yuicompressor-2.4.7.jar --------------------------------------------------------------------------------