diff --git a/Forms_Element.class.js b/Forms_Element.class.js index 2a4783d..985601a 100644 --- a/Forms_Element.class.js +++ b/Forms_Element.class.js @@ -29,6 +29,11 @@ Forms = { return e.getAttribute('form:current-value') || ''; } }, + "form:textarea": class extends Form_Element { + static getValue(e) { + return e.getAttribute('form:current-value') || ''; + } + }, "form:checkbox": class extends Form_Element { static getName(e) { return e.getAttribute('form:label') || e.getAttribute('form:name');