(checkBox, textBox)
| 92 | validate(fuzzyElem) |
| 93 | }) |
| 94 | function toggleLinkedTextBox(checkBox, textBox){ |
| 95 | if(!checkBox.checked) { |
| 96 | textBox.classList.add('text-secondary') |
| 97 | textBox.disabled = true |
| 98 | } |
| 99 | else { |
| 100 | textBox.classList.remove('text-secondary') |
| 101 | textBox.disabled = false |
| 102 | } |
| 103 | } |