Skip to content
This repository was archived by the owner on Sep 10, 2023. It is now read-only.

Installation Documentation, Extra demos show code #792

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ _layouts
gh-pages
*.sw*
node_modules
bower_components
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = function(grunt) {
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n',
compress: true
compress: {}
},
build: {
src: 'src/<%= pkg.name %>.js',
Expand All @@ -21,4 +21,4 @@ module.exports = function(grunt) {
// Default task(s).
grunt.registerTask('default', ['uglify']);

};
};
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
jQuery Tokeninput: A Tokenizing Autocomplete Text Entry
=======================================================
<http://loopj.com/jquery-tokeninput/>

Overview
--------
Tokeninput is a jQuery plugin which allows your users to select multiple items from a predefined list, using autocompletion as they type to find each item. You may have seen a similar type of text entry when filling in the recipients field sending messages on facebook.

Documentation, Features and Demos
---------------------------------
Full details and documentation can be found on the project page here:
Full details and documentation can be found on the project page here: <http://loopj.com/jquery-tokeninput/>

Installation
-------------
* install via npm
* [install npm](https://nodejs.org/download/)
* `npm install -g bower`
* `bower install jquery-tokeninput`
* [download source](http://loopj.com/jquery-tokeninput/)
* [fork](https://github.com/loopj/jquery-tokeninput)

<http://loopj.com/jquery-tokeninput/>
Loading