Skip to content

Commit ac332bb

Browse files
author
Daniel Farrell
committed
Cut 1.1.8 to support Bootstrap 4, setup for NPM
1 parent d36dc2a commit ac332bb

File tree

3 files changed

+29
-5
lines changed

3 files changed

+29
-5
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-combobox",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"homepage": "https://github.com/danielfarrell/bootstrap-combobox",
55
"authors": [
66
"Daniel Farrell <[email protected]>",

js/bootstrap-combobox.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* =============================================================
2-
* bootstrap-combobox.js v1.1.7
2+
* bootstrap-combobox.js v1.1.8
33
* =============================================================
44
* Copyright 2012 Daniel Farrell
55
*
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
* ============================================================ */
1818

19-
!function( $ ) {
19+
(function( $ ) {
2020

2121
"use strict";
2222

@@ -452,11 +452,11 @@
452452
};
453453

454454
$.fn.combobox.defaults = {
455-
bsVersion: '3'
455+
bsVersion: '4'
456456
, menu: '<ul class="typeahead typeahead-long dropdown-menu"></ul>'
457457
, item: '<li><a href="#" class="dropdown-item"></a></li>'
458458
};
459459

460460
$.fn.combobox.Constructor = Combobox;
461461

462-
}( window.jQuery );
462+
}( window.jQuery ));

package.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "bootstrap-combobox",
3+
"version": "1.1.8",
4+
"description": "A combobox plugin that works with twitter bootstrap",
5+
"main": "js/bootstrap-combobox.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/danielfarrell/bootstrap-combobox.git"
12+
},
13+
"keywords": [
14+
"bootstrap",
15+
"combobox",
16+
"dropdown"
17+
],
18+
"author": "Daniel Farrell",
19+
"license": "Apache-2.0",
20+
"bugs": {
21+
"url": "https://github.com/danielfarrell/bootstrap-combobox/issues"
22+
},
23+
"homepage": "https://github.com/danielfarrell/bootstrap-combobox#readme"
24+
}

0 commit comments

Comments
 (0)