-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed formatting. Changed BallObject parameter to make it clear a JQu…
…eryElement element is expected.
- Loading branch information
1 parent
38c9823
commit 78bf29f
Showing
2 changed files
with
19 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
<html> | ||
<head> | ||
<title>TurtleBall</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"/> | ||
<script type="text/javascript" src="jquery-1.10.2.min.js"></script> | ||
<script type="text/javascript" src="TurtleBall.js"></script> | ||
<script type="text/javascript" src="BallObject.js"></script> | ||
</head> | ||
<body> | ||
<button id="btnUp">Up</button> | ||
<button id="btnDown">Down</button> | ||
<button id="btnLeft">Left</button> | ||
<button id="btnRight">Right</button> | ||
<div id="ballDiv"><img src="CoderDojo-ball.png" width='50px' height='50px'/></div> | ||
</body> | ||
<head> | ||
<title>TurtleBall</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"/> | ||
<script type="text/javascript" src="jquery-1.10.2.min.js"></script> | ||
<script type="text/javascript" src="TurtleBall.js"></script> | ||
<script type="text/javascript" src="BallObject.js"></script> | ||
</head> | ||
<body> | ||
<button id="btnUp">Up</button> | ||
<button id="btnDown">Down</button> | ||
<button id="btnLeft">Left</button> | ||
<button id="btnRight">Right</button> | ||
<div id="ballDiv"> | ||
<img src="CoderDojo-ball.png" width="50px" height="50px"/> | ||
</div> | ||
</body> | ||
</html> |