diff options
author | Felix Nagel <info@felixnagel.com> | 2010-11-10 00:07:41 +0100 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2010-11-10 00:07:41 +0100 |
commit | a4240f751ceaf36441667f2d9da55cdce7952cef (patch) | |
tree | ba94a41448f66c2c38e74c311b607fbea50204be | |
parent | c6f6b676ebf377cee6234b065f9183c45e929279 (diff) | |
download | jquery-ui-a4240f751ceaf36441667f2d9da55cdce7952cef.tar.gz jquery-ui-a4240f751ceaf36441667f2d9da55cdce7952cef.zip |
fixed: blocked ALT or F5 when focus the "fake" select, THX phazei for reporting, see https://github.com/fnagel/jquery-ui/issues#issue/6
-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 eb5627a73..8c326bd86 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -101,7 +101,7 @@ $.widget("ui.selectmenu", { ret = true; break; default: - ret = false; + ret = true; self._typeAhead(event.keyCode, 'mouseup'); break; } |