You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added the following code fragment sidestep the issue:
$(window).resize(function () {
// Force re-calc of size percentages when collapsed.
// The collapsed window has a 'fixed' size (0), but the
// size percentages vary during the resize. We need to
// re-calc the size percentages during resizing to a
// smaller window, else the remaining split-pane's size
// could be fractionally to big to fit into its container
// and cause the layout to fail.
if ($(horzSplitPanes[0]).width() < 5) {
sidebarSplitter.collapse(0)
}
});
The globe window contents disappears when the left sidebar is collapsed and the browser width is decreased.
The text was updated successfully, but these errors were encountered: