Spaces:
Running
Running
BraydenMoore
commited on
Commit
•
5e08ab2
1
Parent(s):
9dd142f
Update Templates/index.html
Browse files- Templates/index.html +2 -2
Templates/index.html
CHANGED
@@ -477,7 +477,7 @@
|
|
477 |
|
478 |
const wrapperDiv = document.createElement('div');
|
479 |
wrapperDiv.className = 'winner-wrapper';
|
480 |
-
if (moneyline.Probabilities[0] > 0.
|
481 |
wrapperDiv.classList.add("highlight");
|
482 |
}
|
483 |
|
@@ -513,7 +513,7 @@
|
|
513 |
|
514 |
const overUnderDiv = document.createElement('div');
|
515 |
overUnderDiv.className = 'over-under-wrapper hidden';
|
516 |
-
if (data.over_unders[index]['Probability'][0] > 0.
|
517 |
overUnderDiv.classList.add("highlight");
|
518 |
}
|
519 |
|
|
|
477 |
|
478 |
const wrapperDiv = document.createElement('div');
|
479 |
wrapperDiv.className = 'winner-wrapper';
|
480 |
+
if (moneyline.Probabilities[0] > 0.75){
|
481 |
wrapperDiv.classList.add("highlight");
|
482 |
}
|
483 |
|
|
|
513 |
|
514 |
const overUnderDiv = document.createElement('div');
|
515 |
overUnderDiv.className = 'over-under-wrapper hidden';
|
516 |
+
if (data.over_unders[index]['Probability'][0] > 0.75){
|
517 |
overUnderDiv.classList.add("highlight");
|
518 |
}
|
519 |
|