diff options
author | bptato <nincsnevem662@gmail.com> | 2023-11-24 00:00:08 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-11-24 00:00:28 +0100 |
commit | 88f3e0ab699ec6f951183c3f9bfbd42f99337b58 (patch) | |
tree | c20f9bd1610ca9f79fd22f9e7522acf269fabb16 /src/html | |
parent | f0cf9bd4ac71169b6b1fb381e0e6ee5fde2d0b70 (diff) | |
download | chawan-88f3e0ab699ec6f951183c3f9bfbd42f99337b58.tar.gz |
dom: expose HTMLInputElement.checked
Diffstat (limited to 'src/html')
-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 e813460d..a5aec266 100644 --- a/src/html/dom.nim +++ b/src/html/dom.nim @@ -244,7 +244,7 @@ type form* {.jsget.}: HTMLFormElement inputType*: InputType value* {.jsget.}: string - checked*: bool + checked* {.jsget.}: bool xcoord*: int ycoord*: int file*: Option[Url] |