From 14f6158b9b1d054cceb521651291132b14337944 Mon Sep 17 00:00:00 2001 From: Zoltan Date: Thu, 8 Feb 2024 16:03:51 -0500 Subject: [PATCH] Update ta_cola.html --- ta_cola.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ta_cola.html b/ta_cola.html index 5b49e4f..d52bac6 100644 --- a/ta_cola.html +++ b/ta_cola.html @@ -305,7 +305,7 @@
Cost adjustment by location
select3.add(opt); var opt = document.createElement('option'); opt.value = [1500, 1143]; - opt.text = 'Computational Tools for Climate Science'; + opt.text = 'NeuroAI'; select3.add(opt); //document.querySelector(".js-Selector").value = "Europe/Brussels"; @@ -316,7 +316,7 @@
Cost adjustment by location
var lead_ta = course[0]; var ta = course[1]; - theStr = (country * lead_ta) + '/' + (country * ta) + ' USD' + ' (LeadTA/TA)' + theStr = Math.round(country * lead_ta) + ' USD' + ' / ' + Math.round(country * ta) + ' USD' + ' -- (LeadTA/TA)' document.getElementById('costs').innerHTML = theStr; }