Question
When viewing a SCORM activity using the browser of Chrome the viewing area (Iframe) height is not sized correctly?
Answer
This is a bug with Chrome see https://tracker.moodle.org/browse/MDL-48375 and a workaround until Chrome corrects this issue is found here via CSS https://moodle.org/mod/forum/discuss.php?d=277360#p1193793
The CSS can easily be added to your site by logging in > site administration > Appearance > Additional HTML
The CSS fix has to be placed in the "Within Head" area and between the style tags of <style> </style>
E.g.
<style> /* set up the keyframes */
@-webkit-keyframes nodeInserted {
from { opacity: 0.99; }
to { opacity: 1; }
}
/* force a repaint with a super short duration */
#scorm_content > iframe
{
-webkit-animation-duration: 0.001s;
-webkit-animation-name: nodeInserted;
} </style>
Comments
0 comments
Please sign in to leave a comment.