Fix JSHint errors

This commit is contained in:
Corey Farwell
2014-11-02 21:56:45 -05:00
parent b773e57490
commit 51d79f3e3b
4 changed files with 17 additions and 21 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, JSON.parse(event.data), event)
self.handlers[i].call(self, JSON.parse(event.data), event);
}
};