├── .gitignore ├── .gitignore~ ├── README.md ├── bower.json ├── mdchips.css ├── mdchips.js ├── package.json └── title.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.gitignore~: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B1naryStudio/md-chips/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B1naryStudio/md-chips/HEAD/bower.json -------------------------------------------------------------------------------- /mdchips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B1naryStudio/md-chips/HEAD/mdchips.css -------------------------------------------------------------------------------- /mdchips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B1naryStudio/md-chips/HEAD/mdchips.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B1naryStudio/md-chips/HEAD/package.json -------------------------------------------------------------------------------- /title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B1naryStudio/md-chips/HEAD/title.jpg --------------------------------------------------------------------------------