Skip to content

Commit

Permalink
Packing v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
indrimuska committed Nov 9, 2016
1 parent cc1a1db commit 48591b2
Show file tree
Hide file tree
Showing 5 changed files with 6 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.0",
"version": "2.2.1",
"authors": [
"Indri Muska <[email protected]>"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery-editable-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

if (['focus', 'manual'].indexOf(this.options.trigger) < 0) this.options.trigger = 'focus';
if (['default', 'fade', 'slide'].indexOf(this.options.effects) < 0) this.options.effects = 'default';
if (isNaN(this.options.duration) || ['fast', 'slow'].indexOf(this.options.duration) < 0) this.options.duration = 'fast';
if (isNaN(this.options.duration) && ['fast', 'slow'].indexOf(this.options.duration) < 0) this.options.duration = 'fast';

// create text input
this.$select.replaceWith(this.$input);
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.0",
"version": "2.2.1",
"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 48591b2

Please sign in to comment.