- The Crash Reel
- McConkey
- Buck
- Apollo 11
- Carts of Darkness
- The Wild and Wonderful Whites of West Virginia
- Samsara
- Baraka
- Brooklyn Castle
- Spellbound
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function sna() { | |
| document.querySelectorAll(`input[type=radio][value='satisfactory']`).forEach((e) => e.checked = true) | |
| na_questions = [7, 14, 15, 22, 25, 30, 32, 36, 41, 42, 43, 44, 46, 47, 48] | |
| na_questions.forEach((q) => { | |
| document.querySelector(`input[value='not_applicable'][name='answers[${q}][result]'`).checked = true | |
| }); | |
| } |