Shuo/client/index.html

21 lines
341 B
HTML
Raw Normal View History

2014-03-04 17:22:06 +00:00
<!doctype html>
<html>
<head></head>
<body>
Hello, world.
2014-03-04 19:40:27 +00:00
<script src="//code.jquery.com/jquery-2.1.0.min.js"></script>
2014-03-04 17:22:06 +00:00
<script src="/socket.io/socket.io.js"></script>
2014-03-04 19:40:27 +00:00
<script src="/js/models.js"></script>
2014-03-04 17:22:06 +00:00
<script src="/js/client.js"></script>
<script>
2014-03-04 21:50:43 +00:00
// Run the client!
new Client().connect("");
2014-03-04 17:22:06 +00:00
</script>
</body>
</html>