Spaces:
Running
Running
Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -98,7 +98,7 @@
|
|
98 |
var winAmount = 0;
|
99 |
|
100 |
// Deduct 25 cents
|
101 |
-
var newBalance = parseFloat(balanceAmount.textContent) - 0.
|
102 |
if (newBalance < 0) {
|
103 |
alert("Insufficient balance.");
|
104 |
return;
|
@@ -119,7 +119,7 @@
|
|
119 |
} else if (matches === 4) {
|
120 |
winAmount += 5;
|
121 |
} else if (matches === 5) {
|
122 |
-
winAmount +=
|
123 |
}
|
124 |
}
|
125 |
|
|
|
98 |
var winAmount = 0;
|
99 |
|
100 |
// Deduct 25 cents
|
101 |
+
var newBalance = parseFloat(balanceAmount.textContent) - 0.50;
|
102 |
if (newBalance < 0) {
|
103 |
alert("Insufficient balance.");
|
104 |
return;
|
|
|
119 |
} else if (matches === 4) {
|
120 |
winAmount += 5;
|
121 |
} else if (matches === 5) {
|
122 |
+
winAmount += 20;
|
123 |
}
|
124 |
}
|
125 |
|