gitextract_yb7_sm4l/ ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.coffee ├── MIT-LICENSE.txt ├── README.md ├── bower.json ├── docs/ │ ├── css/ │ │ └── tinycolorpicker.css │ ├── index.html │ └── technical/ │ └── theme/ │ ├── layouts/ │ │ └── main.handlebars │ ├── partials/ │ │ ├── attrs.handlebars │ │ ├── classes.handlebars │ │ ├── events.handlebars │ │ ├── files.handlebars │ │ ├── index.handlebars │ │ ├── method.handlebars │ │ ├── module.handlebars │ │ ├── options.handlebars │ │ ├── props.handlebars │ │ └── sidebar.handlebars │ └── theme.json ├── examples/ │ ├── nojquery/ │ │ ├── index.html │ │ └── tinycolorpicker.css │ └── simple/ │ ├── index.html │ └── tinycolorpicker.css ├── lib/ │ ├── jquery.tinycolorpicker.js │ └── tinycolorpicker.js ├── package.json ├── test/ │ ├── conf/ │ │ ├── karma-all.js │ │ ├── karma-ci.js │ │ ├── karma-common.js │ │ ├── karma-debug.js │ │ └── karma-dev.js │ ├── fixtures/ │ │ ├── tinycolorpicker-css.html │ │ └── tinycolorpicker.html │ └── unit/ │ ├── jquery.tinycolorpicker.spec.js │ └── tinycolorpicker.spec.js └── tinycolorpicker.jquery.json