fix indenting

This commit is contained in:
Stefan Breunig
2013-02-12 23:12:28 +01:00
parent 6edf2210f8
commit 0d0bd4b26a

View File

@ -304,7 +304,7 @@ window.chat.handlePublic = function(data, textStatus, jqXHR, isOldMsgs) {
window.chat.handlePublicAutomated = function(data) { 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]; var time = json[1];
// ignore player messages // ignore player messages
@ -347,7 +347,7 @@ window.chat.handlePublicAutomated = function(data) {
tmpmsg = chat.renderMsg(tmpmsg, nick, time, team); tmpmsg = chat.renderMsg(tmpmsg, nick, time, team);
window.chat._displayedPlayerActionTime[pguid] = [time, tmpmsg]; window.chat._displayedPlayerActionTime[pguid] = [time, tmpmsg];
}; };
}); });
if(chat.getActive() === 'automated') if(chat.getActive() === 'automated')
window.chat.renderAutomatedMsgsTo(); window.chat.renderAutomatedMsgsTo();