This file contains hidden or 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
// brute force | |
// this actually turns out to be better than alert() | |
// as it will stop stupid "[Object object]" alerts | |
// and instead log the actual object to the console | |
// the console && console.log check is to make sure | |
// this code doesn't fail in IE which does not create | |
// the console obj unless the user has dev tools open. | |
window.alert = function(m) { | |
if(console && console.log) { |
This file contains hidden or 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
li.search span.selection { | |
height: /*\**/19px!important; /*ie9*/ | |
_height: 19px!important; /*ie6*/ | |
} | |
@media \0screen { | |
li.search span.selection { | |
height: 20px!important; /*ie8*/ | |
} |
NewerOlder