Skip to content

Commit

Permalink
Update ta_cola.html
Browse files Browse the repository at this point in the history
Extra parenthesis
  • Loading branch information
NickHalper authored Feb 9, 2024
1 parent 4fb876a commit 8275cbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ta_cola.html
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ <h5 class="card-header">Cost adjustment by location</h5>
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;
}
Expand Down

0 comments on commit 8275cbd

Please sign in to comment.