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.
2 parents 609cef0 + 13eb435 commit 0a47fc2Copy full SHA for 0a47fc2
samples/docs/swagger-static-docs/src/main/webapp/assets/js/main.js
@@ -60,4 +60,16 @@ function goToAnchor() {
60
window.scrollTo(0,$('a[name='+anchor+']').offset().top - 80);
61
}
62
63
+function resize()
64
+{
65
+ $(".sidebar").css('height', $(window).height() -60);
66
+ $("#content-window").css('height', $(window).height() -60);
67
68
+}
69
+$(function(){
70
+ window.onresize = resize;
71
+ resize();
72
+ $(window).bind('hashchange', function() {
73
+ choose(window.location.href.toString());
74
+ });
75
+});
0 commit comments