Skip to content

Instantly share code, notes, and snippets.

@lindsayevans
Created May 6, 2010 06:05
Show Gist options
  • Save lindsayevans/391830 to your computer and use it in GitHub Desktop.
Save lindsayevans/391830 to your computer and use it in GitHub Desktop.
if(typeof console === 'undefined'){
var console = {
log: function(s){
var $d = $('#debug-panel');
if(!$d[0]){
$d = $('<div id="debug-panel" style="height:300px;overflow: auto;border: 1px solid #000;padding:10px;font-family:monospace;"></div>').appendTo('body');
}
$d.html($d.html() + '<br/>' + s);
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment