SCORM MDL-31381 decrease max width of TOC to prevent SCORM content from being hidden, remove padding from pop-up and improve maxheight calculation

This commit is contained in:
Dan Marsden 2012-01-26 20:41:41 +13:00
parent 0dde394db5
commit 1c6df63d5c
2 changed files with 6 additions and 5 deletions

View File

@ -196,10 +196,10 @@ M.mod_scorm.init = function(Y, hide_nav, hide_toc, toc_title, window_name, launc
var left = scorm_layout_widget.getUnitByPosition('left');
var maxwidth = parseInt(YAHOO.util.Dom.getStyle('scorm_layout', 'width'));
left.set('maxWidth', (maxwidth - 10));
left.set('maxWidth', (maxwidth - 50));
var cwidth = left.get('width');
if (cwidth > (maxwidth - 10)) {
left.set('width', (maxwidth - 10));
if (cwidth > (maxwidth - 1)) {
left.set('width', (maxwidth - 50));
}
scorm_layout_widget.setStyle('height', '100%');
@ -207,7 +207,7 @@ M.mod_scorm.init = function(Y, hide_nav, hide_toc, toc_title, window_name, launc
center.setStyle('height', '100%');
// calculate the rough new height
newheight = YAHOO.util.Dom.getViewportHeight() *.82;
newheight = YAHOO.util.Dom.getViewportHeight() -5;
if (newheight < 600) {
newheight = 600;
}
@ -247,7 +247,7 @@ M.mod_scorm.init = function(Y, hide_nav, hide_toc, toc_title, window_name, launc
}
}
else {
obj.style.width = (content.offsetWidth - 6)+'px';
obj.style.width = (content.offsetWidth)+'px';
obj.style.height = (content.offsetHeight - 10)+'px';
}
}

View File

@ -26,6 +26,7 @@
#page-mod-scorm-player #altfinishlink {font-size: 140%;border: 0px; padding: 0px; }
#page-mod-scorm-player #altpopuplink {position: left; padding: 5px; border: 0px; }
#page-mod-scorm-player #scormmode {float: left; border: 0px; }
#page-mod-scorm-player.pagelayout-popup #page-content .region-content {padding: 0px; }
.path-mod-scorm.forcejavascript .scorm-center { display:none;}
.path-mod-scorm.forcejavascript .toc { display:none;}