├── .gitignore ├── ChangeLog.md ├── Gruntfile.js ├── README.md ├── bower.json ├── component.json ├── examples └── php-example.php ├── facebook-style.png ├── list-style.png ├── package.json ├── src └── jquery.tokeninput.js └── styles ├── token-input-facebook.css ├── token-input-mac.css └── token-input.css /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | _layouts 3 | .DS_Store 4 | gh-pages 5 | *.sw* 6 | node_modules 7 | -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/bower.json -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/component.json -------------------------------------------------------------------------------- /examples/php-example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/examples/php-example.php -------------------------------------------------------------------------------- /facebook-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/facebook-style.png -------------------------------------------------------------------------------- /list-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/list-style.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/package.json -------------------------------------------------------------------------------- /src/jquery.tokeninput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/src/jquery.tokeninput.js -------------------------------------------------------------------------------- /styles/token-input-facebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/styles/token-input-facebook.css -------------------------------------------------------------------------------- /styles/token-input-mac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/styles/token-input-mac.css -------------------------------------------------------------------------------- /styles/token-input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopj/jquery-tokeninput/HEAD/styles/token-input.css --------------------------------------------------------------------------------