Skip to content

Instantly share code, notes, and snippets.

View eshiota's full-sized avatar

Eduardo Shiota Yasuda eshiota

View GitHub Profile
@ricardobeat
ricardobeat / stupid-ie7-console-log.js
Last active August 29, 2015 14:13
IE7 panel for console.*
;(function () {
var doc = document.documentElement
var IE7 = navigator.userAgent.indexOf('MSIE 7') > 0
logpane = document.createElement('div')
var height = 180
var width = 480
document.body.appendChild(logpane)
logpane.style.background = '#fff'
logpane.style.padding = '10px'
logpane.style.position = IE7 ? 'absolute' : 'fixed'