Skip to content

Commit

Permalink
fixed: missing event parameter when clicking button
Browse files Browse the repository at this point in the history
  • Loading branch information
fnagel committed Nov 15, 2012
1 parent 690bbee commit cda729c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/jquery.ui.selectmenu.js
Expand Up @@ -93,7 +93,7 @@ $.widget("ui.selectmenu", {

event.preventDefault();
})
.bind('click.selectmenu', function() {
.bind('click.selectmenu', function(event) {
event.preventDefault();
})
.bind("keydown.selectmenu", function(event) {
Expand Down

0 comments on commit cda729c

Please sign in to comment.