diff options
-rw-r--r-- | game.html | 12 | ||||
-rw-r--r-- | game.js | 15 | ||||
l--------- | index.html | 1 |
3 files changed, 28 insertions, 0 deletions
diff --git a/game.html b/game.html new file mode 100644 index 0000000..1b90fab --- /dev/null +++ b/game.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Cards Against Originality (Revisited)</title> + <link rel="stylesheet" href="style.css"> + <script src="jquery.js"></script> + <script src="game.js"></script> + </head> + <body> + </body> +</html> @@ -0,0 +1,15 @@ +$(document).ready(function() { + var ws = new WebSocket('ws://' + document.location.host + ':1236'); + + ws.onopen = function() { + }; + + ws.onclose = function() { + }; + + ws.onmessage = function(evt) { + }; + + ws.onerror = function(evt) { + }; +}); diff --git a/index.html b/index.html new file mode 120000 index 0000000..92dc074 --- /dev/null +++ b/index.html @@ -0,0 +1 @@ +game.html
\ No newline at end of file |