diff options
author | avl <avl@litovchenko.com> | 2011-02-07 16:45:58 +0200 |
---|---|---|
committer | avl <avl@litovchenko.com> | 2011-02-07 16:45:58 +0200 |
commit | 9bdaf3b30967370d069351e201e67b68a77eddc7 (patch) | |
tree | 95517a16188acfa4e256071950f0eff345ae9422 /web_socket.js | |
parent | 8b2afa2a083dc60134a3879c693bb9bdc26b160a (diff) | |
download | web-socket-js-9bdaf3b30967370d069351e201e67b68a77eddc7.tar.gz |
opera fix 2
Diffstat (limited to 'web_socket.js')
-rw-r--r-- | web_socket.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_socket.js b/web_socket.js index b61bff5..b149a80 100644 --- a/web_socket.js +++ b/web_socket.js @@ -167,7 +167,7 @@ // Workaround for weird behavior of Opera which sometimes drops events. var self = this; this.__timer = setInterval(function () { - this.__handleEvents(); + self.__handleEvents(); }, 500); } if (this.onopen) this.onopen(); |