Resize on video loaded and when results are already rendered.
(cherry picked from commit b02fe7c
)
pull/1/head
parent
997db862e7
commit
02d3585425
|
@ -235,6 +235,7 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
var _displayEndGame = function () {
|
var _displayEndGame = function () {
|
||||||
if (rendered) {
|
if (rendered) {
|
||||||
$myDom.children().hide().filter('.questionset-results').show();
|
$myDom.children().hide().filter('.questionset-results').show();
|
||||||
|
self.trigger('resize');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//Remove old score screen.
|
//Remove old score screen.
|
||||||
|
@ -306,6 +307,10 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
video.attach($videoContainer);
|
video.attach($videoContainer);
|
||||||
|
// Resize on video loaded
|
||||||
|
video.on('loaded', function () {
|
||||||
|
self.trigger('resize');
|
||||||
|
});
|
||||||
video.play();
|
video.play();
|
||||||
|
|
||||||
if (params.endGame.skipButtonText) {
|
if (params.endGame.skipButtonText) {
|
||||||
|
|
Loading…
Reference in New Issue