(section_name)
| 802 | } |
| 803 | } |
| 804 | getOptionValue(section_name) { |
| 805 | var section = IMAGE_EDITOR_SECTIONS.find((s) => s.name == section_name) |
| 806 | return this.options && section_name in this.options ? this.options[section_name] : section.default |
| 807 | } |
| 808 | selectOption(section_name, option_index) { |
| 809 | var section = IMAGE_EDITOR_SECTIONS.find((s) => s.name == section_name) |
| 810 | var value = section.options[option_index] |
no outgoing calls
no test coverage detected