diff options
author | Felix Nagel <info@felixnagel.com> | 2010-11-13 02:13:28 +0100 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2010-11-13 02:13:28 +0100 |
commit | 1cdd7534e200cf02e8acfa93db1cf37438b9122d (patch) | |
tree | d47264df7587f1b7bf7dd573d81004806db4fb24 | |
parent | c7c42883fa2740af09877e2c5b4126da596399f6 (diff) | |
download | jquery-ui-1cdd7534e200cf02e8acfa93db1cf37438b9122d.tar.gz jquery-ui-1cdd7534e200cf02e8acfa93db1cf37438b9122d.zip |
fixed: missing semicolon
-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 075d7b3c2..cd6b15578 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -247,7 +247,7 @@ $.widget("ui.selectmenu", { if (o.maxHeight < this.list.height()){ this.list.height(o.maxHeight); } } else { if (!o.format && ($(window).height() / 3) < this.list.height()) { - o.maxHeight = $(window).height() / 3 + o.maxHeight = $(window).height() / 3; this.list.height(o.maxHeight); } } |