CIRCChannel.on366 Member

end of names

Syntax

object.on366(e);

Arguments

ArgumentSummary
e

Returns

Remarks

See Also

Source Code

function my_366 (e)
{
// First clear up old users:
var removals = new Array();
while (this.userList.childData.childData.length > 0)
{
var userToRemove = this.userList.childData.childData[0]._userObj;
this.removeFromList(userToRemove);
removals.push(userToRemove);
}
this.removeUsers(removals);
var entries = new Array(), updates = new Array();
for (var u in this.users)
{
entries.push(new UserEntry(this.users[u], this.userListShare));
updates.push(this.users[u]);
}
this.addUsers(updates);
this.userList.childData.appendChildren(entries);
if (this.pendingNamesReply)
{
this.parent.parent.display (e.channel.unicodeName + ": " +
e.params[3], "366");
}
this.pendingNamesReply = false;
// Update conference mode now we have a complete user list.
this._updateConferenceMode();
}