Skip to content

Commit

Permalink
Update cola.html
Browse files Browse the repository at this point in the history
  • Loading branch information
iamzoltan authored Mar 1, 2024
1 parent f4175ec commit ebd6756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cola.html
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ <h5 class="card-header">Cost adjustment by location</h5>
var fund = document.getElementById('fund').value
var course = document.getElementById('course').value

theStr = (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;
}
Expand Down

0 comments on commit ebd6756

Please sign in to comment.