organized ButtonPresents into table, refactored
|
@ -5,8 +5,8 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Javascript game</title>
|
<title>Javascript game</title>
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" type="text/javascript"></script>
|
<script src="./resources/frameworks/jquery-3.2.1.min.js" type="text/javascript"></script>
|
||||||
<script src="./game/tutorial.js" type="text/javascript"></script>
|
<script src="./resources/game/tutorial.js" type="text/javascript"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<nav>
|
<nav>
|
||||||
|
|
Before Width: | Height: | Size: 139 B After Width: | Height: | Size: 139 B |
Before Width: | Height: | Size: 139 B After Width: | Height: | Size: 139 B |
Before Width: | Height: | Size: 139 B After Width: | Height: | Size: 139 B |
Before Width: | Height: | Size: 139 B After Width: | Height: | Size: 139 B |
Before Width: | Height: | Size: 132 B After Width: | Height: | Size: 132 B |
Before Width: | Height: | Size: 138 B After Width: | Height: | Size: 138 B |
16
sandbox.html
|
@ -3,8 +3,8 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Developer's Sandbox</title>
|
<title>Developer's Sandbox</title>
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" type="text/javascript"></script>
|
<script src="./resources/frameworks/jquery-3.2.1.min.js" type="text/javascript"></script>
|
||||||
<script src="./sandbox/helloajax.js" type="text/javascript"></script>
|
<script src="./resources/sandbox/helloajax.js" type="text/javascript"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<nav>
|
<nav>
|
||||||
|
@ -18,6 +18,16 @@
|
||||||
<p id="atom-players"></p>
|
<p id="atom-players"></p>
|
||||||
|
|
||||||
<h2>ButtonPresents Stuff</h2>
|
<h2>ButtonPresents Stuff</h2>
|
||||||
<p id="button-hello"></p>
|
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Data Requests</th>
|
||||||
|
<th>Data Responses</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Hello World</td>
|
||||||
|
<td><p id="button-hello"></p></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|