diff options
author | treeform <starplant@gmail.com> | 2020-11-12 23:12:03 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-13 08:12:03 +0100 |
commit | 83432aecfc1c4820837911b53b450e23936a4da7 (patch) | |
tree | 79d13072c453bcb181478c171fa8759d42e525e1 /lib | |
parent | 492e9afa4c32be278b61498be20ae0afc3ef3188 (diff) | |
download | Nim-83432aecfc1c4820837911b53b450e23936a4da7.tar.gz |
Add documentElement to Document. (#15943)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/js/dom.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/js/dom.nim b/lib/js/dom.nim index d2e5776f0..b73a85291 100644 --- a/lib/js/dom.nim +++ b/lib/js/dom.nim @@ -204,6 +204,7 @@ type Document* = ref DocumentObj DocumentObj {.importc.} = object of NodeObj activeElement*: Element + documentElement*: Element alinkColor*: cstring bgColor*: cstring body*: Element |