Merge pull request #3 from joshtriplett/gh-pages
Minimum score is 7, not 8
This commit is contained in:
commit
29513a151a
2 changed files with 5 additions and 5 deletions
|
@ -134,12 +134,12 @@ SLIDES.push({
|
|||
{id:"tft", num:1},
|
||||
];*/
|
||||
var ROUNDS = [ // and min & max score...
|
||||
{id:"tft", num:5}, // min 3, max 11
|
||||
{id:"tft", num:5}, // min 2, max 11
|
||||
{id:"all_d", num:4}, // min -4, max 0
|
||||
{id:"all_c", num:4}, // min 8, max 12
|
||||
{id:"grudge", num:5}, // min -1, max 11
|
||||
{id:"prober", num:7} // min 2, max 15
|
||||
]; // TOTAL... MIN 8, MAX 49
|
||||
]; // TOTAL... MIN 7, MAX 49
|
||||
ROUND_INDEX = 0;
|
||||
ROUND_NUM = 0;
|
||||
|
||||
|
@ -214,8 +214,8 @@ SLIDES.push({
|
|||
if(score==49) scoreTextID="5";
|
||||
else if(score>=34) scoreTextID="4";
|
||||
else if(score>=22) scoreTextID="3";
|
||||
else if(score>=9) scoreTextID="2";
|
||||
else if(score==8) scoreTextID="1";
|
||||
else if(score>=8) scoreTextID="2";
|
||||
else if(score==7) scoreTextID="1";
|
||||
else scoreTextID="x";
|
||||
scoreTextID = "iterated_score_"+scoreTextID;
|
||||
|
||||
|
|
|
@ -204,7 +204,7 @@ which is <i>perfect!</i> Congrats you have too much time on your hands.
|
|||
...i have no idea how you did that.
|
||||
</p>
|
||||
<p id="iterated_score_end">
|
||||
(the lowest & highest possible scores are 8 and 49, respectively)
|
||||
(the lowest & highest possible scores are 7 and 49, respectively)
|
||||
</p>
|
||||
|
||||
<p id="who_were">
|
||||
|
|
Loading…
Reference in a new issue