├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── dist ├── angular-chips.js ├── angular-chips.min.js └── main.css ├── gulpfile.js ├── karma.config.js ├── others ├── Basic_example.gif ├── Custom_example.gif ├── Using_Promise_obj_example.gif ├── Using_Promise_string_example.gif └── Using_typeahead_example2.gif ├── package.json ├── samples ├── app.js ├── basic_example.js ├── custom_rendering_example.js ├── index.html ├── samples.css ├── using_promise_obj_example.js └── using_promise_str_example.js ├── src ├── css │ └── main.scss └── js │ ├── directives │ ├── chip_tmpl.js │ ├── chips.js │ ├── controls │ │ ├── chip_control.js │ │ └── ng_model_control.js │ └── remove_chip.js │ └── utils │ └── dom_util.js └── test ├── basic_flow_spec.js ├── chip_with_typeahead_flow_spec.js ├── custom_rendering_flow_spec.js ├── promise_obj_flow_spec.js ├── promise_string_flow_spec.js └── utils.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | bower_components/ 4 | coverage/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/bower.json -------------------------------------------------------------------------------- /dist/angular-chips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/dist/angular-chips.js -------------------------------------------------------------------------------- /dist/angular-chips.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/dist/angular-chips.min.js -------------------------------------------------------------------------------- /dist/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/dist/main.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/karma.config.js -------------------------------------------------------------------------------- /others/Basic_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/others/Basic_example.gif -------------------------------------------------------------------------------- /others/Custom_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/others/Custom_example.gif -------------------------------------------------------------------------------- /others/Using_Promise_obj_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/others/Using_Promise_obj_example.gif -------------------------------------------------------------------------------- /others/Using_Promise_string_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/others/Using_Promise_string_example.gif -------------------------------------------------------------------------------- /others/Using_typeahead_example2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/others/Using_typeahead_example2.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/package.json -------------------------------------------------------------------------------- /samples/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/samples/app.js -------------------------------------------------------------------------------- /samples/basic_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/samples/basic_example.js -------------------------------------------------------------------------------- /samples/custom_rendering_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/samples/custom_rendering_example.js -------------------------------------------------------------------------------- /samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/samples/index.html -------------------------------------------------------------------------------- /samples/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/samples/samples.css -------------------------------------------------------------------------------- /samples/using_promise_obj_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/samples/using_promise_obj_example.js -------------------------------------------------------------------------------- /samples/using_promise_str_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/samples/using_promise_str_example.js -------------------------------------------------------------------------------- /src/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/src/css/main.scss -------------------------------------------------------------------------------- /src/js/directives/chip_tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/src/js/directives/chip_tmpl.js -------------------------------------------------------------------------------- /src/js/directives/chips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/src/js/directives/chips.js -------------------------------------------------------------------------------- /src/js/directives/controls/chip_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/src/js/directives/controls/chip_control.js -------------------------------------------------------------------------------- /src/js/directives/controls/ng_model_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/src/js/directives/controls/ng_model_control.js -------------------------------------------------------------------------------- /src/js/directives/remove_chip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/src/js/directives/remove_chip.js -------------------------------------------------------------------------------- /src/js/utils/dom_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/src/js/utils/dom_util.js -------------------------------------------------------------------------------- /test/basic_flow_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/test/basic_flow_spec.js -------------------------------------------------------------------------------- /test/chip_with_typeahead_flow_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/test/chip_with_typeahead_flow_spec.js -------------------------------------------------------------------------------- /test/custom_rendering_flow_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/test/custom_rendering_flow_spec.js -------------------------------------------------------------------------------- /test/promise_obj_flow_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/test/promise_obj_flow_spec.js -------------------------------------------------------------------------------- /test/promise_string_flow_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/test/promise_string_flow_spec.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohbasheer/angular-chips/HEAD/test/utils.js --------------------------------------------------------------------------------