├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── dist ├── jquery-duration-picker.min.css ├── jquery-duration-picker.min.js └── jquery-duration-picker.rtl.min.css ├── gulpfile.js ├── img1.png ├── img2.png ├── index.html ├── package.json └── src ├── jquery-duration-picker.css ├── jquery-duration-picker.js └── jquery-duration-picker.rtl.css /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | bower_components/ 3 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/bower.json -------------------------------------------------------------------------------- /dist/jquery-duration-picker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/dist/jquery-duration-picker.min.css -------------------------------------------------------------------------------- /dist/jquery-duration-picker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/dist/jquery-duration-picker.min.js -------------------------------------------------------------------------------- /dist/jquery-duration-picker.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/dist/jquery-duration-picker.rtl.min.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/gulpfile.js -------------------------------------------------------------------------------- /img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/img1.png -------------------------------------------------------------------------------- /img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/img2.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/package.json -------------------------------------------------------------------------------- /src/jquery-duration-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/src/jquery-duration-picker.css -------------------------------------------------------------------------------- /src/jquery-duration-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/src/jquery-duration-picker.js -------------------------------------------------------------------------------- /src/jquery-duration-picker.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/jquery-duration-picker/HEAD/src/jquery-duration-picker.rtl.css --------------------------------------------------------------------------------