diff --git a/openslides/projector/static/styles/projector-control.css b/openslides/projector/static/styles/projector-control.css index 78d5223eb..7e213b8c1 100644 --- a/openslides/projector/static/styles/projector-control.css +++ b/openslides/projector/static/styles/projector-control.css @@ -86,7 +86,6 @@ /* iframe */ #iframe { - -ms-zoom: 0.25; -moz-transform-origin: 0 0; -webkit-transform-origin: 0 0; -o-transform-origin: 0 0; diff --git a/openslides/projector/templates/projector/control.html b/openslides/projector/templates/projector/control.html index 99978665a..a19484615 100644 --- a/openslides/projector/templates/projector/control.html +++ b/openslides/projector/templates/projector/control.html @@ -53,6 +53,12 @@ //$( ".column" ).disableSelection(); $( "document" ).ready(function(){ if ($.browser.msie) { + if ($.browser.version >= 8.0 && $.browser.version < 9.0) + { + /* scaling bug in IE8.. iframe has to be 4 times bigger */ + $( "#iframe" ).css('width', 1024 * 4); + $( "#iframe" ).css('height', 768 * 4); + } $( "#iframe" ).css('zoom', '0.25'); }