├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── angular-multi-select.css ├── angular-multi-select.js ├── angular-multi-select.min.js ├── demo ├── app.css ├── app.html └── app.js └── tests ├── SpecRunner.html └── tests ├── app.js ├── appSpec.js ├── index.html ├── jasmineBootstrap.js └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/README.md -------------------------------------------------------------------------------- /angular-multi-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/angular-multi-select.css -------------------------------------------------------------------------------- /angular-multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/angular-multi-select.js -------------------------------------------------------------------------------- /angular-multi-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/angular-multi-select.min.js -------------------------------------------------------------------------------- /demo/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/demo/app.css -------------------------------------------------------------------------------- /demo/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/demo/app.html -------------------------------------------------------------------------------- /demo/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/demo/app.js -------------------------------------------------------------------------------- /tests/SpecRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/tests/SpecRunner.html -------------------------------------------------------------------------------- /tests/tests/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/tests/tests/app.js -------------------------------------------------------------------------------- /tests/tests/appSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/tests/tests/appSpec.js -------------------------------------------------------------------------------- /tests/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/tests/tests/index.html -------------------------------------------------------------------------------- /tests/tests/jasmineBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/tests/tests/jasmineBootstrap.js -------------------------------------------------------------------------------- /tests/tests/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alalonde/angular-multi-select/HEAD/tests/tests/style.css --------------------------------------------------------------------------------