We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d52ce5 commit cd53acaCopy full SHA for cd53aca
app.js
@@ -37,6 +37,7 @@ function handler (request, response) {
37
38
// Listen for incoming connections from clients
39
io.sockets.on('connection', function (socket) {
40
+ console.log('New user connected');
41
42
// Start listening for mouse move events
43
socket.on('mousemove', function (data) {
assets/js/script.js
@@ -7,7 +7,7 @@ $(function(){
7
}
8
9
// The URL of your web server (the port is set in app.js)
10
- var url = 'http://localhost:8080';
+ var url = 'http://dev.design.hse.ru:8080';
11
12
var doc = $(document),
13
win = $(window),
0 commit comments