Skip to content

Commit 1cdd753

Browse files
committed
fixed: missing semicolon
1 parent c7c4288 commit 1cdd753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.ui.selectmenu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ $.widget("ui.selectmenu", {
247247
if (o.maxHeight < this.list.height()){ this.list.height(o.maxHeight); }
248248
} else {
249249
if (!o.format && ($(window).height() / 3) < this.list.height()) {
250-
o.maxHeight = $(window).height() / 3
250+
o.maxHeight = $(window).height() / 3;
251251
this.list.height(o.maxHeight);
252252
}
253253
}

0 commit comments

Comments
 (0)