-
-
Save peterjaap/5309852 to your computer and use it in GitHub Desktop.
Fix Magento console in Chrome
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Add to the package layout (via local.xml or however you prefer) --> | |
<!-- Also, best to remove before deployment, as some users report --> | |
<!-- it makes IE 7 crash --> | |
<default> | |
<reference name="content"> | |
<block type="core/text" name="fix.console" as="fix.console"> | |
<action method="setText"> | |
<text><![CDATA[<script type="text/javascript"> | |
iframe = document.createElement('iframe'); | |
iframe.style.display = 'none'; | |
document.getElementsByTagName('body')[0].appendChild(iframe); | |
window.console = iframe.contentWindow.console; | |
console.firebug = "faketrue"; | |
</script>]]></text> | |
</action> | |
</block> | |
</reference> | |
</default> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment