CIRCChannel.onNick Member

Syntax

object.onNick(e);

Arguments

ArgumentSummary
e

Returns

Remarks

See Also

Source Code

function my_cnick (e)
{
if (userIsMe (e.user))
{
if (getTabForObject(this))
{
this.displayHere(getMsg(MSG_NEWNICK_YOU, e.user.unicodeName),
"NICK", "ME!", e.user, this);
}
this.parent.parent.updateHeader();
}
else if (!this.prefs["conference.enabled"])
{
this.display(getMsg(MSG_NEWNICK_NOTYOU, [e.oldNick,
e.user.unicodeName]),
"NICK", e.user, this);
}
this.updateUsers([e.user]);
if (client.currentObject == this)
updateUserList();
}