Hostname displayed on join
authorDarren <darren@darrenwhitlen.com>
Sat, 22 Oct 2011 22:39:16 +0000 (23:39 +0100)
committerDarren <darren@darrenwhitlen.com>
Sat, 22 Oct 2011 22:39:16 +0000 (23:39 +0100)
client/js/front.events.js
client/js/gateway.js

index 81e5db04f6aa74d1328b97f818786831d5027f70..72b2da49cb5bd65719844a256abf7b3c22ff0a46 100644 (file)
@@ -440,7 +440,7 @@ kiwi.front.events = {
             tab = new Tabview(data.channel.toLowerCase());\r
         }\r
 \r
-        tab.addMsg(null, ' ', '--> ' + data.nick + ' has joined', 'action join', 'color:#009900;');\r
+        tab.addMsg(null, ' ', '--> ' + data.nick + ' [' + data.ident + '@' + data.hostname + '] has joined', 'action join', 'color:#009900;');\r
 \r
         if (data.nick === kiwi.gateway.nick) {\r
             return; // Not needed as it's already in nicklist\r
index 09e27467a4a53cec6783ec9692487d7106225d39..048981d5c3a415b84191c7da53b5ce754f6cbc46 100644 (file)
@@ -64,7 +64,7 @@ kiwi.gateway = {
     */
     connect: function (host, port, ssl, password, callback) {
         if (typeof kiwi.gateway.kiwi_server !== 'undefined') {
-            kiwi.gateway.socket = io.connect(kiwi_server, {
+            kiwi.gateway.socket = io.connect(kiwi.gateway.kiwi_server, {
                 'try multiple transports': true,
                 'connect timeout': 3000,
                 'max reconnection attempts': 7,