Skip to content

Commit

Permalink
Merge pull request #497 from caseyjhol/master
Browse files Browse the repository at this point in the history
v1.5.1 (fix #495)
  • Loading branch information
caseyjhol committed Mar 4, 2014
2 parents c718b52 + d1d496a commit 955d3c5
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bootstrap-select.css
@@ -1,5 +1,5 @@
/*!
* bootstrap-select v1.5.0
* bootstrap-select v1.5.1
* http://silviomoreto.github.io/bootstrap-select/
*
* Copyright 2013 bootstrap-select
Expand Down
2 changes: 1 addition & 1 deletion bootstrap-select.jquery.json
Expand Up @@ -8,7 +8,7 @@
"select",
"replacement"
],
"version": "1.5.0",
"version": "1.5.1",
"author": {
"name": "Silvio Moreto",
"url": "https://github.com/silviomoreto/"
Expand Down
4 changes: 2 additions & 2 deletions bootstrap-select.js
@@ -1,5 +1,5 @@
/*!
* bootstrap-select v1.5.0
* bootstrap-select v1.5.1
* http://silviomoreto.github.io/bootstrap-select/
*
* Copyright 2013 bootstrap-select
Expand Down Expand Up @@ -661,7 +661,7 @@

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

if (!that.$menu.find('li').filter(':visible:not(.no-results)').length) {
if (!!no_results.parent().length) no_results.remove();
Expand Down
2 changes: 1 addition & 1 deletion bootstrap-select.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bootstrap-select.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -4,7 +4,7 @@
"bootstrap-select.css",
"bootstrap-select.js"
],
"version": "1.5.0",
"version": "1.5.1",
"homepage": "https://github.com/silviomoreto/bootstrap-select",
"authors": [
"silviomoreto"
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -3,7 +3,7 @@
"description": "A custom <select> for @twitter bootstrap using button dropdown as replacement",
"keywords": ["form", "bootstrap", "select", "replacement"],
"homepage": "https://github.com/silviomoreto/bootstrap-select",
"version": "1.5.0",
"version": "1.5.1",
"authors": [
{
"name": "Silvio Moreto",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -3,7 +3,7 @@
"title": "bootstrap-select",
"filename": "bootstrap-select.js",
"description": "A custom <select> for @twitter bootstrap using button dropdown as replacement",
"version": "1.5.0",
"version": "1.5.1",
"homepage": "http://silviomoreto.github.io/bootstrap-select/",
"author": {
"name": "Silvio Moreto",
Expand Down

0 comments on commit 955d3c5

Please sign in to comment.