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

Commit bce4dbd

Browse files
committed
Merge pull request #443 from rajkissu/patch/bower
Bower Support
2 parents 2d1958c + a701245 commit bce4dbd

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
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

Lines changed: 23 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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)