projects
/
KiwiIRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd77942
)
Fixed websocket undefined on app.websocketDisconnect()
author
Darren
<darren@darrenwhitlen.com>
Thu, 25 Aug 2011 19:41:05 +0000
(20:41 +0100)
committer
Darren
<darren@darrenwhitlen.com>
Thu, 25 Aug 2011 19:41:05 +0000
(20:41 +0100)
node/kiwi.js
patch
|
blob
|
blame
|
history
diff --git
a/node/kiwi.js
b/node/kiwi.js
index 99091d1456c3b95649e8eb23e897158edd623d7b..032b560cb21cc9a414e70ce57f86fad7519a148a 100644
(file)
--- a/
node/kiwi.js
+++ b/
node/kiwi.js
@@
-144,7
+144,7
@@
this.websocketConnection = function (websocket) {
return app.websocketConnection(websocket);
}
this.websocketDisconnect = function () {
- return app.websocketDisconnect();
+ return app.websocketDisconnect(
this
);
}
this.websocketMessage = function (msg, callback) {
return app.websocketMessage(this, msg, callback);