From b620c0afb754f7d1cd6cccfb0e4ff7ec3bb6f2b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rene=CC=81=20Ko=CC=88cher?= Date: Sun, 15 Apr 2012 14:51:50 +0200 Subject: [PATCH] Add 'zoom' css attribute if we detect MSIE. --- openslides/projector/templates/projector/control.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/openslides/projector/templates/projector/control.html b/openslides/projector/templates/projector/control.html index 3e74ceb1a..8bc8f2732 100644 --- a/openslides/projector/templates/projector/control.html +++ b/openslides/projector/templates/projector/control.html @@ -26,6 +26,11 @@ $( this ).parents( ".portlet:first" ).find( ".portlet-content" ).toggle(); }); $( ".column" ).disableSelection(); + $( "document" ).ready(function(){ + if ($.browser.msie) { + $( "#iframe" ).css('zoom', '0.25'); + } + }); });