scrolling for big drop down menus, fixes #360

main
msquare 7 years ago
parent 962e7d5726
commit 4b2bc20d0e

@ -82,4 +82,8 @@ $(function () {
$("input[type='submit']").prop("readonly", true).addClass("disabled");
return true;
});
$(".dropdown-menu").css("max-height", function() {
return ($(window).height() - 50) + "px";
}).css("overflow-y", "scroll");
});

Loading…
Cancel
Save