organized ButtonPresents into table, refactored

This commit is contained in:
alisolarflare 2017-06-10 09:13:19 -07:00
parent cbd4f5c088
commit 9b687a6076
12 changed files with 15 additions and 5 deletions

View file

@ -5,8 +5,8 @@
<head>
<meta charset="utf-8">
<title>Javascript game</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="./game/tutorial.js" type="text/javascript"></script>
<script src="./resources/frameworks/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="./resources/game/tutorial.js" type="text/javascript"></script>
</head>
<body>
<nav>

View file

Before

Width:  |  Height:  |  Size: 139 B

After

Width:  |  Height:  |  Size: 139 B

View file

Before

Width:  |  Height:  |  Size: 139 B

After

Width:  |  Height:  |  Size: 139 B

View file

Before

Width:  |  Height:  |  Size: 139 B

After

Width:  |  Height:  |  Size: 139 B

View file

Before

Width:  |  Height:  |  Size: 139 B

After

Width:  |  Height:  |  Size: 139 B

View file

Before

Width:  |  Height:  |  Size: 132 B

After

Width:  |  Height:  |  Size: 132 B

View file

Before

Width:  |  Height:  |  Size: 138 B

After

Width:  |  Height:  |  Size: 138 B

View file

@ -3,8 +3,8 @@
<head>
<meta charset="utf-8">
<title>Developer's Sandbox</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="./sandbox/helloajax.js" type="text/javascript"></script>
<script src="./resources/frameworks/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="./resources/sandbox/helloajax.js" type="text/javascript"></script>
</head>
<body>
<nav>
@ -18,6 +18,16 @@
<p id="atom-players"></p>
<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>
</html>