Add 'zoom' css attribute if we detect MSIE.
This commit is contained in:
parent
da9861b9f7
commit
b620c0afb7
@ -26,6 +26,11 @@
|
|||||||
$( this ).parents( ".portlet:first" ).find( ".portlet-content" ).toggle();
|
$( this ).parents( ".portlet:first" ).find( ".portlet-content" ).toggle();
|
||||||
});
|
});
|
||||||
$( ".column" ).disableSelection();
|
$( ".column" ).disableSelection();
|
||||||
|
$( "document" ).ready(function(){
|
||||||
|
if ($.browser.msie) {
|
||||||
|
$( "#iframe" ).css('zoom', '0.25');
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user