From 4b61590dbd93f38bc9cca0bc786df2a1e3e18f21 Mon Sep 17 00:00:00 2001 From: Zoltan Date: Thu, 29 Feb 2024 23:33:19 -0500 Subject: [PATCH] Update cola.html --- cola.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cola.html b/cola.html index fa602d3..853e384 100644 --- a/cola.html +++ b/cola.html @@ -358,7 +358,7 @@
Cost adjustment by location
var fund = document.getElementById('fund').value var course = document.getElementById('course').value - theStr = Math.Floor(country * course * (0.5 + 0.5*fund) + country * course * 0.574 / 0.426 * job * fund) + ' USD' + theStr = Math.floor(country * course * (0.5 + 0.5*fund) + country * course * 0.574 / 0.426 * job * fund) + ' USD' document.getElementById('costs').innerHTML = theStr; }