Skip to content
Snippets Groups Projects
Commit b6779065 authored by uhensler's avatar uhensler
Browse files

OO-2789: Hide the scrollbars in IE11

parent a510c8fe
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,8 @@ function registerIFrame(iFrameId) { ...@@ -10,6 +10,8 @@ function registerIFrame(iFrameId) {
if (debugIFRH) console.log("iFrame %s registered.", iFrameId); if (debugIFRH) console.log("iFrame %s registered.", iFrameId);
iframe.style.overflow = "hidden"; iframe.style.overflow = "hidden";
iframe.scrolling = "no"; iframe.scrolling = "no";
// only needed for IE11 but seams to not brake other browsers
iframe.contentDocument.body.scroll = "no";
}, },
resizedCallback: function() { resizedCallback: function() {
OPOL.adjustHeight() OPOL.adjustHeight()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment