Skip to content

Commit cd53aca

Browse files
author
Евгений А. Семенов
committed
fix host name
1 parent 9d52ce5 commit cd53aca

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app.js

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ function handler (request, response) {
3737

3838
// Listen for incoming connections from clients
3939
io.sockets.on('connection', function (socket) {
40+
console.log('New user connected');
4041

4142
// Start listening for mouse move events
4243
socket.on('mousemove', function (data) {

assets/js/script.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $(function(){
77
}
88

99
// The URL of your web server (the port is set in app.js)
10-
var url = 'http://localhost:8080';
10+
var url = 'http://dev.design.hse.ru:8080';
1111

1212
var doc = $(document),
1313
win = $(window),

0 commit comments

Comments
 (0)