CIRCChanMode.setPublicTopic Member

Sets or clears the public topic mode.

Syntax

object.setPublicTopic(f);

Arguments

ArgumentSummary
f

Returns

Remarks

See Also

Source Code

function chan_ptopic (f)
{
var modifier = (f) ? "-" : "+";
this.parent.parent.sendData("MODE " + this.parent.encodedName + " " +
modifier + "t\n");
return true;
}