Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions h5p-editor/scripts/h5peditor-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ns.Editor = function (library, defaultParams, replace, iframeLoaded) {
'<div class="h5p-editor h5peditor">' + ns.t('core', 'loading') + '</div>' +
'</body></html>');
iframe.contentDocument.close();
iframe.contentDocument.documentElement.style.overflow = 'hidden';
// iframe.contentDocument.documentElement.style.overflow = 'hidden';
};

/**
Expand Down Expand Up @@ -478,7 +478,7 @@ ns.Editor.prototype.semiFullscreen = function ($iframe, $element, done) {
// Restore the default style attribute properties
$iframe.css({
width: '100%',
height: '3em',
height: '992px',
zIndex: 101,
top: 0,
left: 0
Expand Down Expand Up @@ -548,7 +548,7 @@ ns.hideAllButOne = function (element, win) {
display: sibling.style.getPropertyValue('display'),
priority: sibling.style.getPropertyPriority('display')
});
sibling.style.setProperty('display', 'none', 'important');
// sibling.style.setProperty('display', 'none', 'important');
}
}

Expand Down