about summary refs log tree commit diff stats
path: root/src/html
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-11-24 00:00:08 +0100
committerbptato <nincsnevem662@gmail.com>2023-11-24 00:00:28 +0100
commit88f3e0ab699ec6f951183c3f9bfbd42f99337b58 (patch)
treec20f9bd1610ca9f79fd22f9e7522acf269fabb16 /src/html
parentf0cf9bd4ac71169b6b1fb381e0e6ee5fde2d0b70 (diff)
downloadchawan-88f3e0ab699ec6f951183c3f9bfbd42f99337b58.tar.gz
dom: expose HTMLInputElement.checked
Diffstat (limited to 'src/html')
-rw-r--r--src/html/dom.nim2
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]