Skip to content

Commit dbcf0fc

Browse files
committed
read me updated
1 parent a86feab commit dbcf0fc

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ Array example `["banana", "strawberry", "apple"]`. Or you can use objects or eve
4444
`[{id: 1, text: "Apple", html: "This is <b>Apple</b>!"}, {id: 2, text: "Pear"}, "banana"]` where `html` is optional
4545
key. In objects `id` is used to save, text to display in pill and `html` in typeahead suggestions.
4646

47-
1. First is to path default values as option.
47+
1. First method is to path default values as option.
4848

4949
$('#bs-tags').tags({values:["banana", "apple"]});
5050

51-
2. Second to provide URL where through `GET` it will fetch default values
51+
2. Second method to provide URL where through `GET` it will fetch default values
5252

5353
$('#bs-tags').tags({values_url:"urls/defaults.json"});
5454

55-
3. And last is to use callback function
55+
3. And last method is to use callback function
5656

5757
$('#bs-tags').tags({
5858
onLoadDefaults:function(values){

component.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "bootstrap-tags-input",
3-
"version": "0.0.1",
4-
"main": [
5-
"./css/bootstrap-tags.css",
6-
"./js/bootstrap-tags.js"
7-
],
8-
"ignore": [
9-
"**/.*",
10-
"node_modules",
11-
"components"
12-
],
13-
"dependencies": {
14-
"bootstrap": "~2.3.1",
15-
"jquery": "~2.0.0"
16-
}
2+
"name": "bootstrap-tags-input",
3+
"version": "0.0.1",
4+
"main": [
5+
"./css/bootstrap-tags.css",
6+
"./js/bootstrap-tags.js"
7+
],
8+
"ignore": [
9+
"**/.*",
10+
"node_modules",
11+
"components"
12+
],
13+
"dependencies": {
14+
"bootstrap": "~2.3.1",
15+
"jquery": "~2.0.0"
16+
}
1717
}

0 commit comments

Comments
 (0)