messageHandler expects object instead of string

This commit is contained in:
Marek Kotewicz
2014-10-22 16:12:41 +02:00
parent ea3048421f
commit f7c9c8928e
4 changed files with 16 additions and 7 deletions

View File

@ -11,7 +11,7 @@
var self = this;
this.ws.onmessage = function(event) {
for(var i = 0; i < self.handlers.length; i++) {
self.handlers[i].call(self, event.data, event)
self.handlers[i].call(self, JSON.parse(event.data), event)
}
};