Skip to content

Commit

Permalink
Merge pull request #325 from caseyjhol/master
Browse files Browse the repository at this point in the history
v1.3.4 - fix #314
  • Loading branch information
caseyjhol committed Sep 26, 2013
2 parents 0ad9c79 + c549926 commit ec47cb3
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bootstrap-select.css
@@ -1,5 +1,5 @@
/*!
* bootstrap-select v1.3.3
* bootstrap-select v1.3.4
* 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.3.3",
"version": "1.3.4",
"author": {
"name": "Silvio Moreto",
"url": "https://github.com/silviomoreto/"
Expand Down
6 changes: 3 additions & 3 deletions bootstrap-select.js
@@ -1,5 +1,5 @@
/*!
* bootstrap-select v1.3.3
* bootstrap-select v1.3.4
* http://silviomoreto.github.io/bootstrap-select/
*
* Copyright 2013 bootstrap-select
Expand Down Expand Up @@ -534,9 +534,9 @@

this.$searchbox.on('input', function() {
if (that.$searchbox.val()) {
that.$newElement.find('li').show().not(':icontains(' + that.$searchbox.val() + ')').hide();
that.$menu.find('li').show().not(':icontains(' + that.$searchbox.val() + ')').hide();
} else {
that.$newElement.find('li').show();
that.$menu.find('li').show();
}
});
},
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.3.3",
"version": "1.3.4",
"homepage": "https://github.com/silviomoreto/bootstrap-select",
"authors": [
"silviomoreto"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "bootstrap-select",
"title": "bootstrap-select",
"description": "A custom <select> for @twitter bootstrap using button dropdown as replacement",
"version": "1.3.3",
"version": "1.3.4",
"homepage": "http://silviomoreto.github.io/bootstrap-select/",
"author": {
"name": "Silvio Moreto",
Expand Down

0 comments on commit ec47cb3

Please sign in to comment.