()
| 748 | return `<label><span>${esc(field.label)}</span><input name="${esc(field.name)}" type="${field.type || 'text'}" value="${esc(value)}"${required}${min}${max}${placeholder} /></label>`; |
| 749 | } |
| 750 | function clearConfigForm(){ |
| 751 | S.admin.selectedIndex = -1; |
| 752 | renderConfigList(); |
| 753 | renderConfigEditor(); |
| 754 | } |
| 755 | function formConfigItem(){ |
| 756 | const elements = $('configForm').elements; |
| 757 | const item = {}; |
nothing calls this directly
no test coverage detected