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 a4d24a7 commit f4175ec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cola.html
Original file line number Diff line number Diff line change
Expand Up @@ -334,19 +334,19 @@ <h5 class="card-header">Cost adjustment by location</h5>

var select3 = document.querySelector(".js-Selector3"); //.innerHTML = "";
var opt = document.createElement('option');
opt.value = 890;
opt.value = 925;
opt.text = 'Deep Learning';
select3.add(opt);
var opt = document.createElement('option');
opt.value = 890;
opt.value = 925;
opt.text = 'Computational Neuroscience';
select3.add(opt);
var opt = document.createElement('option');
opt.value = 600;
opt.value = 617;
opt.text = 'Computational Tools for Climate Science';
select3.add(opt);
var opt = document.createElement('option');
opt.value = 600;
opt.value = 617;
opt.text = 'NeuroAI';
select3.add(opt);

Expand All @@ -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 * 1200.0 * job * fund) + ' USD'
theStr = (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 f4175ec

Please sign in to comment.