Properly update the `programTextarea`.
Chris Pressey
1 year, 3 months ago
50 | 50 |
options: options,
|
51 | 51 |
onchange: function(option) {
|
52 | 52 |
program = option.value;
|
53 | |
programTextarea.innerHTML = program;
|
|
53 |
programTextarea.value = program;
|
54 | 54 |
run();
|
55 | 55 |
}
|
56 | 56 |
})
|