Skip to content

Commit 955d3c5

Browse files
committed
Merge pull request #497 from caseyjhol/master
v1.5.1 (fix #495)
2 parents c718b52 + d1d496a commit 955d3c5

8 files changed

+10
-10
lines changed

bootstrap-select.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* bootstrap-select v1.5.0
2+
* bootstrap-select v1.5.1
33
* http://silviomoreto.github.io/bootstrap-select/
44
*
55
* Copyright 2013 bootstrap-select

bootstrap-select.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"select",
99
"replacement"
1010
],
11-
"version": "1.5.0",
11+
"version": "1.5.1",
1212
"author": {
1313
"name": "Silvio Moreto",
1414
"url": "https://github.com/silviomoreto/"

bootstrap-select.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* bootstrap-select v1.5.0
2+
* bootstrap-select v1.5.1
33
* http://silviomoreto.github.io/bootstrap-select/
44
*
55
* Copyright 2013 bootstrap-select
@@ -661,7 +661,7 @@
661661

662662
this.$searchbox.on('input propertychange', function() {
663663
if (that.$searchbox.val()) {
664-
that.$lis.find('a').removeClass('hide').not(':icontains(' + that.$searchbox.val() + ')').parent().addClass('hide');
664+
that.$lis.removeClass('hide').find('a').not(':icontains(' + that.$searchbox.val() + ')').parent().addClass('hide');
665665

666666
if (!that.$menu.find('li').filter(':visible:not(.no-results)').length) {
667667
if (!!no_results.parent().length) no_results.remove();

bootstrap-select.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bootstrap-select.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"bootstrap-select.css",
55
"bootstrap-select.js"
66
],
7-
"version": "1.5.0",
7+
"version": "1.5.1",
88
"homepage": "https://github.com/silviomoreto/bootstrap-select",
99
"authors": [
1010
"silviomoreto"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A custom <select> for @twitter bootstrap using button dropdown as replacement",
44
"keywords": ["form", "bootstrap", "select", "replacement"],
55
"homepage": "https://github.com/silviomoreto/bootstrap-select",
6-
"version": "1.5.0",
6+
"version": "1.5.1",
77
"authors": [
88
{
99
"name": "Silvio Moreto",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "bootstrap-select",
44
"filename": "bootstrap-select.js",
55
"description": "A custom <select> for @twitter bootstrap using button dropdown as replacement",
6-
"version": "1.5.0",
6+
"version": "1.5.1",
77
"homepage": "http://silviomoreto.github.io/bootstrap-select/",
88
"author": {
99
"name": "Silvio Moreto",

0 commit comments

Comments
 (0)