JI-915 Fix embed resizing issue with Chrome

semi-fullscreen
Frode Petterson 2018-11-16 12:39:57 +01:00
parent 37c0593ff4
commit ec9127d245
1 changed files with 4 additions and 0 deletions

View File

@ -20,6 +20,10 @@
// Make iframe responsive
iframe.style.width = '100%';
// Bugfix for Chrome: Force update of iframe width. If this is not done the
// document size may not be updated before the content resizes.
iframe.getBoundingClientRect();
// Tell iframe that it needs to resize when our window resizes
var resize = function () {
if (iframe.contentWindow) {