()
| 707 | } |
| 708 | |
| 709 | function restoreInputsToInitialState() { |
| 710 | assert( |
| 711 | _initStateBackup != null, |
| 712 | 'opt.saveInputsInitialState must be true to use `restoreInputsToInitialState`.' |
| 713 | ); |
| 714 | setInputsState(_initStateBackup); |
| 715 | } |
| 716 | |
| 717 | function initInputsContainer(container, define, features) { |
| 718 | assert(container.tagName.toLowerCase() === 'div'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…