├── .gitignore ├── .vscode └── settings.json ├── Gruntfile.js ├── README.md ├── bower.json ├── css └── fontello-d1d7d531 │ ├── LICENSE.txt │ ├── README.txt │ ├── config.json │ ├── css │ ├── animation.css │ ├── fontello-codes.css │ ├── fontello-embedded.css │ ├── fontello-ie7-codes.css │ ├── fontello-ie7.css │ └── fontello.css │ ├── demo.html │ └── font │ ├── fontello.eot │ ├── fontello.svg │ ├── fontello.ttf │ ├── fontello.woff │ └── fontello.woff2 ├── index.html ├── js ├── bootstrap-tags.js └── bootstrap-tags.min.js ├── package.json ├── urls ├── default_users.json ├── defaults.json ├── suggestions.json └── user_suggestions.json └── web.config /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | components 3 | node_modules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": [ 3 | "typeahead" 4 | ] 5 | } -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/bower.json -------------------------------------------------------------------------------- /css/fontello-d1d7d531/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/LICENSE.txt -------------------------------------------------------------------------------- /css/fontello-d1d7d531/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/README.txt -------------------------------------------------------------------------------- /css/fontello-d1d7d531/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/config.json -------------------------------------------------------------------------------- /css/fontello-d1d7d531/css/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/css/animation.css -------------------------------------------------------------------------------- /css/fontello-d1d7d531/css/fontello-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/css/fontello-codes.css -------------------------------------------------------------------------------- /css/fontello-d1d7d531/css/fontello-embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/css/fontello-embedded.css -------------------------------------------------------------------------------- /css/fontello-d1d7d531/css/fontello-ie7-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/css/fontello-ie7-codes.css -------------------------------------------------------------------------------- /css/fontello-d1d7d531/css/fontello-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/css/fontello-ie7.css -------------------------------------------------------------------------------- /css/fontello-d1d7d531/css/fontello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/css/fontello.css -------------------------------------------------------------------------------- /css/fontello-d1d7d531/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/demo.html -------------------------------------------------------------------------------- /css/fontello-d1d7d531/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/font/fontello.eot -------------------------------------------------------------------------------- /css/fontello-d1d7d531/font/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/font/fontello.svg -------------------------------------------------------------------------------- /css/fontello-d1d7d531/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/font/fontello.ttf -------------------------------------------------------------------------------- /css/fontello-d1d7d531/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/font/fontello.woff -------------------------------------------------------------------------------- /css/fontello-d1d7d531/font/fontello.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/css/fontello-d1d7d531/font/fontello.woff2 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/index.html -------------------------------------------------------------------------------- /js/bootstrap-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/js/bootstrap-tags.js -------------------------------------------------------------------------------- /js/bootstrap-tags.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/js/bootstrap-tags.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/package.json -------------------------------------------------------------------------------- /urls/default_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/urls/default_users.json -------------------------------------------------------------------------------- /urls/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/urls/defaults.json -------------------------------------------------------------------------------- /urls/suggestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/urls/suggestions.json -------------------------------------------------------------------------------- /urls/user_suggestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/urls/user_suggestions.json -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Serhioromano/bootstrap-tags/HEAD/web.config --------------------------------------------------------------------------------