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 609cef0 commit 329f281Copy full SHA for 329f281
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
+ }).trigger('hashchange');
75
+});
0 commit comments