We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8629400 commit 9152d39Copy full SHA for 9152d39
templates/html/resize.js
@@ -66,7 +66,7 @@ function initResizable(treeview) {
66
}
67
else
68
{
69
- contentHeight = windowHeight - headerHeight - 1;
+ contentHeight = windowHeight - headerHeight;
70
71
content.css({height:contentHeight + "px"});
72
if (location.hash.slice(1)) {
@@ -139,6 +139,8 @@ function initResizable(treeview) {
139
140
$("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault);
141
$(".ui-resizable-handle").dblclick(collapseExpand);
142
+ // workaround for firefox
143
+ $("body").css({overflow: "hidden"});
144
145
$(window).on('load',function() { resizeHeight(treeview); });
146
0 commit comments