Index: lams_bb_integration/RELEASE_NOTES.TXT =================================================================== diff -u -rfa671cd2a3d8d5c5801a099d703de5eb2abff0cd -rad162da27085fe8316d8b6a6a85c473c3e9dbe5a --- lams_bb_integration/RELEASE_NOTES.TXT (.../RELEASE_NOTES.TXT) (revision fa671cd2a3d8d5c5801a099d703de5eb2abff0cd) +++ lams_bb_integration/RELEASE_NOTES.TXT (.../RELEASE_NOTES.TXT) (revision ad162da27085fe8316d8b6a6a85c473c3e9dbe5a) @@ -142,3 +142,4 @@ * LDEV-4164: Fix sorting in BB content area * LDEV-4171: Remove obsolete svgFormat parameter that is no longer used in WF as long as it produces only SVGs (no PNGs) * LDEV-4178: Escape commas when pre-adding users to a lesson +* LDEV-4169: Preview window doesn't scroll down with IE11 Index: lams_bb_integration/web/links/monitor.jsp =================================================================== diff -u -r58b0209f70fa9660cea1d90282fd903d4ef495f9 -rad162da27085fe8316d8b6a6a85c473c3e9dbe5a --- lams_bb_integration/web/links/monitor.jsp (.../monitor.jsp) (revision 58b0209f70fa9660cea1d90282fd903d4ef495f9) +++ lams_bb_integration/web/links/monitor.jsp (.../monitor.jsp) (revision ad162da27085fe8316d8b6a6a85c473c3e9dbe5a) @@ -243,7 +243,7 @@ } else { try { - monitorWin = window.open(monitorURL,'mWindow','width=1280,height=720,resizable'); + monitorWin = window.open(monitorURL,'mWindow','width=1280,height=720,resizable,scrollbars=yes'); monitorWin.focus(); } catch(e) { // popups blocked by a 3rd party Index: lams_bb_integration/web/modules/create.jsp =================================================================== diff -u -r58b0209f70fa9660cea1d90282fd903d4ef495f9 -rad162da27085fe8316d8b6a6a85c473c3e9dbe5a --- lams_bb_integration/web/modules/create.jsp (.../create.jsp) (revision 58b0209f70fa9660cea1d90282fd903d4ef495f9) +++ lams_bb_integration/web/modules/create.jsp (.../create.jsp) (revision ad162da27085fe8316d8b6a6a85c473c3e9dbe5a) @@ -231,7 +231,7 @@ } else{ try { - authorWin = window.open(authorUrl,'aWindow','width=1280,height=720,resizable'); + authorWin = window.open(authorUrl,'aWindow','width=1280,height=720,resizable,scrollbars=yes'); authorWin.focus(); }catch(e){ // popups blocked by a 3rd party @@ -260,7 +260,7 @@ } else { try { - previewWin = window.open(previewUrl,'pWindow','width=1280,height=720,resizable'); + previewWin = window.open(previewUrl,'pWindow','width=1280,height=720,resizable,scrollbars=yes'); previewWin.focus(); } catch(e) { // popups blocked by a 3rd party Index: lams_bb_integration/web/modules/learnermonitor.jsp =================================================================== diff -u -r8d92365c1f399beb957a1ac353436d5f5e8016fe -rad162da27085fe8316d8b6a6a85c473c3e9dbe5a --- lams_bb_integration/web/modules/learnermonitor.jsp (.../learnermonitor.jsp) (revision 8d92365c1f399beb957a1ac353436d5f5e8016fe) +++ lams_bb_integration/web/modules/learnermonitor.jsp (.../learnermonitor.jsp) (revision ad162da27085fe8316d8b6a6a85c473c3e9dbe5a) @@ -265,7 +265,7 @@ } } else { try { - learnerWin = window.open(learnerUrl,'lWin','width=1280,height=720,resizable=1'); + learnerWin = window.open(learnerUrl,'lWin','width=1280,height=720,resizable=1,scrollbars=yes'); learnerWin.focus(); } catch(e) { // popups blocked by a 3rd party @@ -286,7 +286,7 @@ } } else { try { - monitorWin = window.open(monitorUrl,'aWin','width=1280,height=720,resizable=1'); + monitorWin = window.open(monitorUrl,'aWin','width=1280,height=720,resizable=1,scrollbars=yes'); monitorWin.opener = self; monitorWin.focus(); } catch(e) {