├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── angular-bootstrap-multiselect.js ├── app.js ├── bower.json ├── index.html ├── karma.conf.js ├── multiselect.png └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | .idea 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianha/angular-bootstrap-multiselect/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianha/angular-bootstrap-multiselect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianha/angular-bootstrap-multiselect/HEAD/README.md -------------------------------------------------------------------------------- /angular-bootstrap-multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianha/angular-bootstrap-multiselect/HEAD/angular-bootstrap-multiselect.js -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianha/angular-bootstrap-multiselect/HEAD/app.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianha/angular-bootstrap-multiselect/HEAD/bower.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianha/angular-bootstrap-multiselect/HEAD/index.html -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianha/angular-bootstrap-multiselect/HEAD/karma.conf.js -------------------------------------------------------------------------------- /multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianha/angular-bootstrap-multiselect/HEAD/multiselect.png -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianha/angular-bootstrap-multiselect/HEAD/test.js --------------------------------------------------------------------------------