We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af2fdc0 commit 4d22a65Copy full SHA for 4d22a65
docs/css/default.css
@@ -303,3 +303,7 @@ table {
303
border-color: white;
304
margin-bottom: 0.6em;
305
}
306
+
307
+.side-nav {
308
+ overflow-y: scroll;
309
+}
docs/template.html
@@ -198,5 +198,14 @@ <h3 id="myModalLabel">Documentation search</h3>
198
$('.dropdown-menu').on('click touchstart', function(event) {
199
event.stopPropagation();
200
});
201
202
+ // Dynamically force sidenav to no higher than browser window
203
+ $('.side-nav').css('max-height', window.innerHeight - 125);
204
205
+ $(function(){
206
+ $(window).resize(function(){
207
208
+ });
209
210
</script>
211
</body></html>
0 commit comments