Skip to content

Commit a1cd240

Browse files
committed
Update to sockjs 0.3
1 parent aa2c253 commit a1cd240

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/sockjs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html><head>
33
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
4-
<script src="http://cdn.sockjs.org/sockjs-0.2.min.js"></script>
4+
<script src="http://cdn.sockjs.org/sockjs-0.3.min.js"></script>
55
<script src="http://cdn.sockjs.org/websocket-multiplex-0.1.js"></script>
66
<style>
77
.box {

examples/sockjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version" : "0.0.0-unreleasable",
44
"dependencies" : {
55
"express" : "2.5.8",
6-
"sockjs" : "0.2.x",
6+
"sockjs" : "0.3.x",
77
"websocket-multiplex" : "*"
88
}
99
}

examples/sockjs/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var websocket_multiplex = require('websocket-multiplex');
55

66

77
// 1. Setup SockJS server
8-
var sockjs_opts = {sockjs_url: "http://cdn.sockjs.org/sockjs-0.2.min.js"};
8+
var sockjs_opts = {sockjs_url: "http://cdn.sockjs.org/sockjs-0.3.min.js"};
99
var service = sockjs.createServer(sockjs_opts);
1010

1111

0 commit comments

Comments
 (0)