]> jfr.im git - irc/quakenet/qwebirc.git/commitdiff
Add /quit.
authorChris Porter <redacted>
Fri, 24 Oct 2008 17:19:47 +0000 (18:19 +0100)
committerChris Porter <redacted>
Fri, 24 Oct 2008 17:19:47 +0000 (18:19 +0100)
TODO.txt
js/irc/commandparser.js

index decc43c02673b78b4e72cd440e072c901fa653a0..ca33b37da8608476cc1e5187e60e30603ef9fadc 100644 (file)
--- a/TODO.txt
+++ b/TODO.txt
@@ -2,7 +2,10 @@ sound
 padding\r
 prettify wizard\r
 tab completion\r
+tab dragging\r
 options for notices and stuff\r
+nick only/chan only\r
 @+ in nick shown in text\r
 scroll pos isn't saved when you go between tabs if not at bottom.\r
 fix embedding wizard in IE\r
+undo closed tab\r
index 4efad3916350fcecf2581a0529070260a4ad57ca..103beff635b29d3ac14e26f19d3094af12350a89 100644 (file)
@@ -209,6 +209,9 @@ qwebirc.irc.CommandParser = new Class({
   cmd_AWAY: [false, 1, 0, function(args) {
     this.send("AWAY :" + (args?args[0]:""));
   }],
+  cmd_QUIT: [false, 1, 0, function(args) {
+    this.send("QUIT :" + (args?args[0]:""));
+  }],
   cmd_CYCLE: [true, 1, 0, function(args) {
     var c = this.parentObject.getActiveWindow().name;