removing debug code in collab_client.js

pull/667/head
Matthias Bartelmeß 2012-04-20 13:34:35 +02:00
parent ab7f7506b9
commit 709a3b1dbe
1 changed files with 0 additions and 8 deletions

View File

@ -302,13 +302,11 @@ function getCollabClient(ace2editor, serverVars, initialUserInfo, options, _pad)
{ {
userSet[id] = userInfo; userSet[id] = userInfo;
callbacks.onUpdateUserInfo(userInfo); callbacks.onUpdateUserInfo(userInfo);
dmesgUsers();
} }
else else
{ {
userSet[id] = userInfo; userSet[id] = userInfo;
callbacks.onUserJoin(userInfo); callbacks.onUserJoin(userInfo);
dmesgUsers();
} }
tellAceActiveAuthorInfo(userInfo); tellAceActiveAuthorInfo(userInfo);
} }
@ -321,7 +319,6 @@ function getCollabClient(ace2editor, serverVars, initialUserInfo, options, _pad)
delete userSet[userInfo.userId]; delete userSet[userInfo.userId];
fadeAceAuthorInfo(userInfo); fadeAceAuthorInfo(userInfo);
callbacks.onUserLeave(userInfo); callbacks.onUserLeave(userInfo);
dmesgUsers();
} }
} }
else if (msg.type == "DISCONNECT_REASON") else if (msg.type == "DISCONNECT_REASON")
@ -405,11 +402,6 @@ function getCollabClient(ace2editor, serverVars, initialUserInfo, options, _pad)
} }
} }
function dmesgUsers()
{
//pad.dmesg($.map(getConnectedUsers(), function(u) { return u.userId.slice(-2); }).join(','));
}
function setChannelState(newChannelState, moreInfo) function setChannelState(newChannelState, moreInfo)
{ {
if (newChannelState != channelState) if (newChannelState != channelState)