diff --git a/js/h5p.js b/js/h5p.js index e6244b9..813b714 100644 --- a/js/h5p.js +++ b/js/h5p.js @@ -117,10 +117,6 @@ H5P.fullScreenIframe = function (contentId, obj, exitCallback, $body) { */ H5P.resizeIframe = function (contentId, height) { var iframe = document.getElementById('h5p-iframe-' + contentId); - // Don't allow iFrame to grow beyond window height; - if (height > window.innerHeight) { - height = window.innerHeight; - } iframe.style.height = (H5P.isFullscreen) ? '100%' : height + 'px'; };