Skip to content

Commit

Permalink
Merge pull request olton#596 from samscudder/patch-1
Browse files Browse the repository at this point in the history
Fix effect: "none" option for dropdown
  • Loading branch information
olton committed Aug 16, 2014
2 parents 46b0f79 + b614f01 commit a6dfcf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/js/metro/metro-dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
switch (this.options.effect) {
case 'fade': $(el).fadeIn('fast'); break;
case 'slide': $(el).slideDown('fast'); break;
default: $(el).hide();
default: $(el).show();
}
this._trigger("onOpen", null, el);
},
Expand Down

0 comments on commit a6dfcf6

Please sign in to comment.