├── .gitignore ├── .jscsrc ├── .jshintrc ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── demo ├── data.json ├── index.html ├── sections │ ├── about.html │ ├── apiAndOptions.html │ ├── examples.html │ └── installation.html └── snippets │ ├── attireAssets.html │ ├── attireFooter.html │ ├── author.html │ ├── githubRibbon.html │ ├── googleAnalytics.html │ └── pageMeta.html ├── dist ├── fastselect.css ├── fastselect.js ├── fastselect.min.css ├── fastselect.min.js ├── fastselect.standalone.js └── fastselect.standalone.min.js ├── index.html ├── package.json └── src ├── fastselect.js └── fastselect.scss /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | node_modules/ 3 | .sass-cache -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/bower.json -------------------------------------------------------------------------------- /demo/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/data.json -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/sections/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/sections/about.html -------------------------------------------------------------------------------- /demo/sections/apiAndOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/sections/apiAndOptions.html -------------------------------------------------------------------------------- /demo/sections/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/sections/examples.html -------------------------------------------------------------------------------- /demo/sections/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/sections/installation.html -------------------------------------------------------------------------------- /demo/snippets/attireAssets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/snippets/attireAssets.html -------------------------------------------------------------------------------- /demo/snippets/attireFooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/snippets/attireFooter.html -------------------------------------------------------------------------------- /demo/snippets/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/snippets/author.html -------------------------------------------------------------------------------- /demo/snippets/githubRibbon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/snippets/githubRibbon.html -------------------------------------------------------------------------------- /demo/snippets/googleAnalytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/snippets/googleAnalytics.html -------------------------------------------------------------------------------- /demo/snippets/pageMeta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/demo/snippets/pageMeta.html -------------------------------------------------------------------------------- /dist/fastselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/dist/fastselect.css -------------------------------------------------------------------------------- /dist/fastselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/dist/fastselect.js -------------------------------------------------------------------------------- /dist/fastselect.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/dist/fastselect.min.css -------------------------------------------------------------------------------- /dist/fastselect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/dist/fastselect.min.js -------------------------------------------------------------------------------- /dist/fastselect.standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/dist/fastselect.standalone.js -------------------------------------------------------------------------------- /dist/fastselect.standalone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/dist/fastselect.standalone.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/package.json -------------------------------------------------------------------------------- /src/fastselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/src/fastselect.js -------------------------------------------------------------------------------- /src/fastselect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrekalo/fastselect/HEAD/src/fastselect.scss --------------------------------------------------------------------------------