diff options
author | Felix Nagel <info@felixnagel.com> | 2013-04-29 21:59:55 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2013-04-29 21:59:55 +0200 |
commit | a29cfb8bf4a1795d125bc2c20940696ff2a5a1d1 (patch) | |
tree | 74baaa23ba5ccd5e4d6a03dd6b7ed40cf074e18b /ui/jquery.ui.selectmenu.js | |
parent | 60eed79390def4cbc6ee6e1edf89d749176e8b29 (diff) | |
download | jquery-ui-a29cfb8bf4a1795d125bc2c20940696ff2a5a1d1.tar.gz jquery-ui-a29cfb8bf4a1795d125bc2c20940696ff2a5a1d1.zip |
Selectmenu: don't quote click, remove extraneous space
Diffstat (limited to 'ui/jquery.ui.selectmenu.js')
-rw-r--r-- | ui/jquery.ui.selectmenu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index 9ed150c2e..07b8bd47e 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -62,7 +62,7 @@ $.widget( "ui.selectmenu", { // fix existing label this.label = $( "label[for='" + this.ids.element + "']" ).attr( "for", this.ids.button ); this._on( this.label, { - "click": function( event ) { + click: function( event ) { this.button.focus(); event.preventDefault(); } |