Add 'zoom' css attribute if we detect MSIE.

This commit is contained in:
René Köcher 2012-04-15 14:51:50 +02:00
parent da9861b9f7
commit b620c0afb7
1 changed files with 5 additions and 0 deletions

View File

@ -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');
}
});
});
</script>