diff options
author | bptato <nincsnevem662@gmail.com> | 2024-12-30 18:40:00 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-12-30 18:40:00 +0100 |
commit | ef9845ec7f90febd358003b73fc6488c6e22e87e (patch) | |
tree | 0df56ef4aa242ce1f85036c844ddb9af05f943c8 | |
parent | 799a5783864c9312d1ef5e6d039d08010d766b95 (diff) | |
download | chawan-ef9845ec7f90febd358003b73fc6488c6e22e87e.tar.gz |
dom: add input type getter/setter
-rw-r--r-- | src/html/dom.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html/dom.nim b/src/html/dom.nim index 49882b1b..759191a8 100644 --- a/src/html/dom.nim +++ b/src/html/dom.nim @@ -282,7 +282,7 @@ type parserInserted*: bool HTMLInputElement* = ref object of FormAssociatedElement - inputType*: InputType + inputType* {.jsgetset: "type".}: InputType value* {.jsget.}: string internalChecked {.jsget: "checked".}: bool xcoord*: int |