Skip to content

Commit

Permalink
Cut 1.1.8 to support Bootstrap 4, setup for NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Farrell committed Mar 19, 2017
1 parent d36dc2a commit ac332bb
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap-combobox",
"version": "1.1.7",
"version": "1.1.8",
"homepage": "https://github.com/danielfarrell/bootstrap-combobox",
"authors": [
"Daniel Farrell <[email protected]>",
Expand Down
8 changes: 4 additions & 4 deletions js/bootstrap-combobox.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* =============================================================
* bootstrap-combobox.js v1.1.7
* bootstrap-combobox.js v1.1.8
* =============================================================
* Copyright 2012 Daniel Farrell
*
Expand All @@ -16,7 +16,7 @@
* limitations under the License.
* ============================================================ */

!function( $ ) {
(function( $ ) {

"use strict";

Expand Down Expand Up @@ -452,11 +452,11 @@
};

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

$.fn.combobox.Constructor = Combobox;

}( window.jQuery );
}( window.jQuery ));
24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "bootstrap-combobox",
"version": "1.1.8",
"description": "A combobox plugin that works with twitter bootstrap",
"main": "js/bootstrap-combobox.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielfarrell/bootstrap-combobox.git"
},
"keywords": [
"bootstrap",
"combobox",
"dropdown"
],
"author": "Daniel Farrell",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/danielfarrell/bootstrap-combobox/issues"
},
"homepage": "https://github.com/danielfarrell/bootstrap-combobox#readme"
}

0 comments on commit ac332bb

Please sign in to comment.