We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 719a215 + cbbda21 commit 7774b46Copy full SHA for 7774b46
js/phpws.js
@@ -99,7 +99,7 @@
99
100
this.close = function(){
101
return ws.close.apply(ws, arguments);
102
- }
+ };
103
};
104
105
Client.prototype = new Emitter;
@@ -139,7 +139,6 @@
139
console.log("Subscribing to room " + self.name);
140
self.transport.emit(self.name, "subscribe");
141
});
142
-
143
return this;
144
145
@@ -151,7 +150,6 @@
151
150
var previousTag = 0;
152
var generateTag = function(){
153
previousTag += 1;
154
155
return "client-"+previousTag;
156
157
@@ -201,7 +199,7 @@
201
199
sendObj(msg);
202
200
203
204
205
206
207
EventTransport.prototype = new Emitter;
@@ -212,4 +210,4 @@
212
210
RemoteEvents: EventTransport
213
211
214
215
-}(window.jQuery);
+}(window.jQuery);
0 commit comments