parent
7782b19e99
commit
e412c3a228
|
@ -188,20 +188,19 @@ H5P.ConfirmationDialog = (function (EventDispatcher) {
|
||||||
popup.classList.remove('hidden');
|
popup.classList.remove('hidden');
|
||||||
popupBackground.classList.remove('hiding');
|
popupBackground.classList.remove('hiding');
|
||||||
|
|
||||||
|
setTimeout(function () {
|
||||||
// Focus confirm button
|
// Focus confirm button
|
||||||
confirmButton.focus();
|
confirmButton.focus();
|
||||||
|
|
||||||
// Resize iFrame if necessary
|
// Resize iFrame if necessary
|
||||||
if (resizeIFrame && options.instance) {
|
if (resizeIFrame && options.instance) {
|
||||||
setTimeout(function () {
|
|
||||||
var minHeight = parseInt(popup.offsetHeight, 10) +
|
var minHeight = parseInt(popup.offsetHeight, 10) +
|
||||||
exitButtonOffset + (2 * shadowOffset);
|
exitButtonOffset + (2 * shadowOffset);
|
||||||
wrapperElement.style.minHeight = minHeight + 'px';
|
wrapperElement.style.minHeight = minHeight + 'px';
|
||||||
options.instance.trigger('resize');
|
options.instance.trigger('resize');
|
||||||
resizeIFrame = false;
|
resizeIFrame = false;
|
||||||
}, 100);
|
|
||||||
}
|
}
|
||||||
|
}, 100);
|
||||||
}, 0);
|
}, 0);
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
|
|
Loading…
Reference in New Issue