(gui, modified)
| 2826 | } |
| 2827 | |
| 2828 | function markPresetModified(gui, modified) { |
| 2829 | var opt = gui.__preset_select[gui.__preset_select.selectedIndex]; |
| 2830 | // console.log('mark', modified, opt); |
| 2831 | if (modified) { |
| 2832 | opt.innerHTML = opt.value + "*"; |
| 2833 | } else { |
| 2834 | opt.innerHTML = opt.value; |
| 2835 | } |
| 2836 | } |
| 2837 | |
| 2838 | function updateDisplays(controllerArray) { |
| 2839 |
no outgoing calls
no test coverage detected