From 634dc12d734fceccc4497479678a4db16fc7142c Mon Sep 17 00:00:00 2001 From: Stefan Breunig Date: Sat, 16 Feb 2013 11:47:09 +0100 Subject: [PATCH] adjust debug for changes in chat --- code/debugging.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {