|
@@ -2248,13 +2248,14 @@ ${ hueIcons.symbols() }
|
|
|
lockSelectedRow: true,
|
|
lockSelectedRow: true,
|
|
|
includeNavigator: false,
|
|
includeNavigator: false,
|
|
|
mainScrollable: '.right-panel',
|
|
mainScrollable: '.right-panel',
|
|
|
- stickToTopPosition: vm.isPlayerMode() ? 1 : 73,
|
|
|
|
|
|
|
+ stickToTopPosition: function() { return vm.isPlayerMode() ? 1 : 73 },
|
|
|
parentId: 'snippet_' + snippet.id(),
|
|
parentId: 'snippet_' + snippet.id(),
|
|
|
clonedContainerPosition: "fixed"
|
|
clonedContainerPosition: "fixed"
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
$(el).jHueHorizontalScrollbar();
|
|
$(el).jHueHorizontalScrollbar();
|
|
|
- } else {
|
|
|
|
|
|
|
+ }
|
|
|
|
|
+ else {
|
|
|
$(el).parents(".dataTables_wrapper").jHueTableScroller({
|
|
$(el).parents(".dataTables_wrapper").jHueTableScroller({
|
|
|
maxHeight: DATATABLES_MAX_HEIGHT,
|
|
maxHeight: DATATABLES_MAX_HEIGHT,
|
|
|
heightAfterCorrection: 0,
|
|
heightAfterCorrection: 0,
|
|
@@ -2778,6 +2779,9 @@ ${ hueIcons.symbols() }
|
|
|
clonedContainerPosition: "absolute"
|
|
clonedContainerPosition: "absolute"
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
|
|
+ else {
|
|
|
|
|
+ $('.right-panel').trigger('scroll');
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
@@ -3031,6 +3035,7 @@ ${ hueIcons.symbols() }
|
|
|
} else {
|
|
} else {
|
|
|
$(".main-content").css("top", "1px");
|
|
$(".main-content").css("top", "1px");
|
|
|
}
|
|
}
|
|
|
|
|
+ redrawFixedHeaders(200);
|
|
|
$(window).bind("keydown", "esc", exitPlayerMode);
|
|
$(window).bind("keydown", "esc", exitPlayerMode);
|
|
|
} else {
|
|
} else {
|
|
|
viewModel.isLeftPanelVisible(wasAssistVisible);
|
|
viewModel.isLeftPanelVisible(wasAssistVisible);
|