From 8275cbdfcb050a2f6f820f4e09f8a470e633dbe4 Mon Sep 17 00:00:00 2001 From: Nick Halper <10643579+NickHalper@users.noreply.github.com> Date: Fri, 9 Feb 2024 16:49:17 -0700 Subject: [PATCH] Update ta_cola.html Extra parenthesis --- ta_cola.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ta_cola.html b/ta_cola.html index 045c63d..1a41da9 100644 --- a/ta_cola.html +++ b/ta_cola.html @@ -316,7 +316,7 @@
Cost adjustment by location
var lead_ta = course[0]; var ta = course[1]; - theStr = Math.round((country * lead_ta + lead_ta)/2) + ' USD' + ' / ' + Math.round(((country * ta + ta)/2) + ' USD' + ' -- (LeadTA/TA)' + theStr = Math.round((country * lead_ta + lead_ta)/2) + ' USD' + ' / ' + Math.round((country * ta + ta)/2) + ' USD' + ' -- (LeadTA/TA)' document.getElementById('costs').innerHTML = theStr; }