-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.html
More file actions
30 lines (23 loc) · 896 Bytes
/
Copy pathclient.html
File metadata and controls
30 lines (23 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!-- THIS FILE DEPENDS ON THE ENVIRONMENT.
<!-- YOU PROBABLY WANT TO HAVE IT IGNOREDBY GIT: -->
<!-- git update-index --assume-unchanged client.html -->
<!-- IF YOU CHANGE IT, MAKE SURE TO UPDATE THE IP OF THE SOCKET AND TO MAKE IT KNOWN TO GIT. -->
<!-- git update-index --no-assume-unchanged client.html -->
<html>
<head>
<script src="client/client_library.js"></script>
<script src="client/client_quiz.js"></script>
<script src="client/client_io.js"></script>
<script src="client/client_socket.js"></script>
<link rel="stylesheet" href="client/client_common.css">
<script>
//ClientSocket.initializeToIp('ws://192.168.1.229:25565');
ClientSocket.initializeToIp('ws://www.yoannbourse.com:25565');
//ClientSocket.initializeToIp('ws://127.0.0.1:25565');
</script>
</head>
<body>
<h1>This is the default empty client page for PartyParty</h1>
You should never have seen this.
</body>
</html>