gui.js 209 B

123456789
  1. function update_box(box, json) {
  2. box.innerHTML='';
  3. for (i of json){
  4. let y=document.createElement('option');
  5. y.text=String(i);
  6. y.value=String(i);
  7. box.add(y, null)
  8. }
  9. }