diff --git a/code/debugging.js b/code/debugging.js index b1033032..70317a4c 100644 --- a/code/debugging.js +++ b/code/debugging.js @@ -58,7 +58,7 @@ window.debug.console.create = function() { $('#chatcontrols .active').removeClass('active'); $(this).addClass('active'); }); - $('#chat').append(''); + $('#chat').append(''); } window.debug.console.renderLine = function(text, errorType) { @@ -76,7 +76,7 @@ window.debug.console.renderLine = function(text, errorType) { var t = ''; var s = 'style="color:'+color+'"'; var l = ''+t+''+errorType+''+text+''; - $('#debugconsole').prepend(l); + $('#debugconsole table').prepend(l); } window.debug.console.log = function(text) {