SCORM player broken in Safari 8, same issue as with Chrome before?

Re: SCORM player broken in Safari 8, same issue as with Chrome before?

by Mathew Gancarz -
Number of replies: 2
Picture of Core developers

Hi Dan, confirming that the css below does fix this issue in Safari 8, as linked in https://moodle.org/mod/forum/discuss.php?d=277360#p1193793

/* 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;
}

Average of ratings: Useful (1)
In reply to Mathew Gancarz

Re: SCORM player broken in Safari 8, same issue as with Chrome before?

by Sandeep Kankatala -

Thanks Mathew. This worked for me.

Confirming this fixes Safari 9 as well. (Tested on OS X El Capitan).


In reply to Sandeep Kankatala

Re: SCORM player broken in Safari 8, same issue as with Chrome before?

by Tim Krüger -

I had that issues once when opening the scorm module in a new window with width / height of 100%. I could solve it by setting the width and height of the new window to 95%.

Tim