Skip to content

Commit

Permalink
Browser compat fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
LandonPowell committed Apr 21, 2017
1 parent 6ce3171 commit f83b37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/js/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ function connect() {
);
return false;
}
listeners[data[0]]( ...data.slice(1) );
listeners[data[0]].apply(undefined, data.slice(1));
};

socket.onopen = function(openingEvent) {
Expand Down

0 comments on commit f83b37b

Please sign in to comment.