diff options
author | Bung <crc32@qq.com> | 2020-11-12 19:36:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 12:36:42 +0100 |
commit | bc007a3cd32890d30501c7c0921681281be4ebb9 (patch) | |
tree | d410e36e9783197b8446bed4e201b1a4627c0bb7 /lib/js | |
parent | 527e792827497002ded742ad815c567a4a056471 (diff) | |
download | Nim-bc007a3cd32890d30501c7c0921681281be4ebb9.tar.gz |
add parent property to window in dom.nim (#15922)
Diffstat (limited to 'lib/js')
-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 a74c63231..d2e5776f0 100644 --- a/lib/js/dom.nim +++ b/lib/js/dom.nim @@ -154,6 +154,7 @@ type performance*: Performance onpopstate*: proc (event: Event) localStorage*: LocalStorage + parent*: Window Frame* = ref FrameObj FrameObj {.importc.} = object of WindowObj |