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
function fitToWindow()
{
var heightBuffer = 190;
var windowHeight = 800;
var navBarHeight = 650;
if (typeof window.innerHeight != 'undefined')
{
windowHeight = window.innerHeight;
}
// Add extra space if the reconfigure options are on screen
var cbExists = document.getElementById("configButtons");
if(cbExists){
heightBuffer += 100;
}
// Take the window height and subtract the top tabs (90 px) and some buffer for incidental items
var contentHeight = windowHeight - heightBuffer;
// The nav bar works better with the page at this height.
document.getElementById("navigationPane").style.height = navBarHeight;
var blackboardPageHeight = Math.max(navBarHeight, contentHeight);
// Set height of content divs column.
// Containerdiv is created by the BBNG presets.
document.getElementById("containerdiv").style.height = contentHeight;
document.getElementById("courseContent").style.height = contentHeight;
document.getElementById("contentPanel").style.height = blackboardPageHeight;
}
</script>
Outside of Javascript, you could just add more height to the height buffer if you know that the buttons appear before loading the page.
The text was updated successfully, but these errors were encountered:
I have filed an internal work item for Panopto to investigate this issue. If you have any other issues please contact Panopto support at https://support.panopto.com.
The configure buttons - https://drive.google.com/file/d/1kKBC_CKVolB3095KyzDNr_NCrOTb0XB6/view?usp=drivesdk - are always off-screen, even when there isn't enough content in Panopto/Blackboard to warrant a scroll bar.
I haven't checked exactly what size you need, but I think this can fixed by checking for the configure buttons and adding some more space.
A few lines to do this are below "// Add extra space if the reconfigure options are on screen"
https://github.com/Panopto/Blackboard-9.1-Plugin-for-Panopto/blob/master/WebRoot/Content.jsp
Outside of Javascript, you could just add more height to the height buffer if you know that the buttons appear before loading the page.
The text was updated successfully, but these errors were encountered: