Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.

Commit 12c69a1

Browse files
committed
Merge pull request #2 from vkunz/master
Optional protocols parameter in WebSocket constructor.
2 parents aeae73c + e774370 commit 12c69a1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jquery.websocket.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
*/
1111
(function($){
1212
$.extend({
13-
websocket: function(url, s) {
14-
var ws = window['MozWebSocket'] ? new MozWebSocket(url) : window['WebSocket'] ? new WebSocket(url) : {
13+
websocket: function(url, s, protocols) {
14+
protocols = protocols || [];
15+
var ws = window['MozWebSocket'] ? new MozWebSocket(url, protocols) : window['WebSocket'] ? new WebSocket(url, protocols) : {
1516
send: function(m){ return false; },
1617
close: function(){}
1718
};

0 commit comments

Comments
 (0)