From 0d0bd4b26a0784f7b28fca923d272dc63379c160 Mon Sep 17 00:00:00 2001 From: Stefan Breunig Date: Tue, 12 Feb 2013 23:12:28 +0100 Subject: [PATCH] fix indenting --- code/chat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/chat.js b/code/chat.js index 7b091552..ac3da081 100644 --- a/code/chat.js +++ b/code/chat.js @@ -304,7 +304,7 @@ window.chat.handlePublic = function(data, textStatus, jqXHR, isOldMsgs) { window.chat.handlePublicAutomated = function(data) { - $.each(data.result, function(ind, json) { // newest first! + $.each(data.result, function(ind, json) { // newest first! var time = json[1]; // ignore player messages @@ -347,7 +347,7 @@ window.chat.handlePublicAutomated = function(data) { tmpmsg = chat.renderMsg(tmpmsg, nick, time, team); window.chat._displayedPlayerActionTime[pguid] = [time, tmpmsg]; }; - }); + }); if(chat.getActive() === 'automated') window.chat.renderAutomatedMsgsTo();