Skip to content

Commit

Permalink
Packing v2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
indrimuska committed Nov 17, 2016
1 parent bf96bec commit ce108ed
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-editable-select",
"version": "2.2.3",
"version": "2.2.4",
"authors": [
"Indri Muska <[email protected]>"
],
Expand Down
3 changes: 2 additions & 1 deletion dist/jquery-editable-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
EditableSelect.prototype.select = function ($li) {
if (!this.$list.has($li) || !$li.is('li.es-visible:not([disabled])')) return;
this.$input.val($li.text());
this.hide();
if (this.options.filter) this.hide();
this.filter();
this.utility.trigger('select', $li);
};
Expand Down Expand Up @@ -170,6 +170,7 @@
that.es.select(that.es.$list.find('li.selected'));
e.preventDefault();
}
break;
case 9: // Tab
case 27: // Esc
that.es.hide();
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery-editable-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 dist/jquery-editable-select.min.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-editable-select",
"version": "2.2.3",
"version": "2.2.4",
"description": "A simple jQuery Plugin that converts a select into an text field with suggestions.",
"main": "dist/jquery-editable-select.min.js",
"repository": {
Expand Down

0 comments on commit ce108ed

Please sign in to comment.