Skip to content

Commit

Permalink
Changes in start Page
Browse files Browse the repository at this point in the history
  • Loading branch information
jlwerra committed Oct 13, 2013
1 parent 86afacc commit 178c27b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
17 changes: 11 additions & 6 deletions Startpage.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
<script type="text/javascript" src="input.js"></script>
<script type="text/javascript" src="StartScreen.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

<!--CSS StyleSheet -->
<link rel="stylesheet" type="text/css" href="assets/styles/template.css" media="screen" />
Expand Down Expand Up @@ -110,6 +111,14 @@ <h3>level Select</h3>
</div>
</form><br />

<form>
<div id="StartButton">
<h3>level Select</h3>
<input type="button" id="StartGameButton" onclick="javascript:window.location.href='FractionGame.html'"/>

</div>
</form><br />




Expand All @@ -125,10 +134,6 @@ <h3>level Select</h3>
<footer>Created in Tim Krause's Fall 2013 Game Design class by The Invisible Llamas.</footer>
</div>





<script type="text/javascript">
</script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion options.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function Options()
this.MinQuizzes = 1;
this.MaxQuizzes = 3;
this.TimerAmount = 100;
this.RevealAnswers = false;
this.RevealAnswers = true;

//This will enable the random fraction generator
//If Use Generator is true than level can be no greater than 3
Expand Down
3 changes: 1 addition & 2 deletions output.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,5 @@ function DisplayScoreQuizButton()

function DisplayAnswer(id)
{
//Based on the id make the place holder for the answer hide or show
alert("Answer should Show");
document.getElementById('answer' + id).style.visibility='visible';
}

0 comments on commit 178c27b

Please sign in to comment.