diff options
author | Jairo <kidandcat@gmail.com> | 2020-01-24 20:06:17 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2020-01-24 20:06:17 +0100 |
commit | fb74497c9947f58d5a9b071985361477890d1d2f (patch) | |
tree | 01fd14213997fb0ed524ae50e129529a138b0864 /lib/js | |
parent | ccb728a7b048a7c2b4e9f800411623e6c64e66f0 (diff) | |
download | Nim-fb74497c9947f58d5a9b071985361477890d1d2f.tar.gz |
Add "origin" to window.location (#13251)
Add "origin" to window location: https://www.w3schools.com/jsref/prop_loc_origin.asp
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 53d9cd204..ff5165ca5 100644 --- a/lib/js/dom.nim +++ b/lib/js/dom.nim @@ -923,6 +923,7 @@ type port*: cstring protocol*: cstring search*: cstring + origin*: cstring History* = ref HistoryObj HistoryObj {.importc.} = object of RootObj |