Commit d48d14f8 authored by Joe Robinson's avatar Joe Robinson
Browse files

Add /topic function

No related merge requests found
Pipeline #14 skipped
Showing with 8 additions and 0 deletions
+8 -0
......@@ -114,6 +114,10 @@ $("#send-message").keypress(function(e) {
nick = message.split(" ")[1];
message = message.substring(6+nick.length, message.length);
sendPm(message, nick);
} else if (message.indexOf("/topic") == 0) {
var channel = $(".tab.active").attr("data-tab").replace("chan-", "#")
topic = message.substring(7, message.length);
setTopic(channel, topic);
} else if (message.indexOf("/") == 0) {
command = message.split(" ")[0].replace("/","");
commandArgs = message.replace(command + " ", "");
......@@ -159,6 +163,10 @@ function sendPm(message, nick) {
chatTab.scrollTop(chanTab.prop("scrollHeight"));
}
function setTopic(channel, topic) {
client.send("TOPIC", channel, topic);
}
function joinChannel(channel, sendJoin) {
if (sendJoin) {
client.join(channel);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment