Skip to content

Commit a701245

Browse files
committed
Bower Support
* Bumps to 1.6.1 * Adds component.json for Bower integration
1 parent 2d1958c commit a701245

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
_site
22
_layouts
33
.DS_Store
4-
gh-pages
4+
gh-pages
5+
*.sw*

component.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name" : "jquery-tokeninput",
3+
"version" : "1.6.1",
4+
"description" : "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.",
5+
"main" : [ "./src/jquery.tokeninput.js", "./styles/token-input.css" ],
6+
"homepage" : "http://loopj.com/jquery-tokeninput",
7+
"dependencies" : {
8+
"jquery" : ">= 1.5.x"
9+
},
10+
"keywords" : [
11+
"tokeninput",
12+
"input",
13+
"autocomplete"
14+
],
15+
"author" : {
16+
"name" : "James Smith",
17+
"web" : "http://loopj.com"
18+
},
19+
"license": [
20+
"http://www.opensource.org/licenses/mit-license.php",
21+
"http://www.opensource.org/licenses/gpl-license.php"
22+
]
23+
}

src/jquery.tokeninput.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* jQuery Plugin: Tokenizing Autocomplete Text Entry
3-
* Version 1.6.0
3+
* Version 1.6.1
44
*
55
* Copyright (c) 2009 James Smith (http://loopj.com)
66
* Licensed jointly under the GPL and MIT licenses,

0 commit comments

Comments
 (0)