diff options
author | bptato <nincsnevem662@gmail.com> | 2023-10-19 20:04:15 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-10-19 20:05:21 +0200 |
commit | 3c3f0f1035d7b71d1993c38ca630095699972f61 (patch) | |
tree | 434fde30f4a19a1faaabebf1ba06dda731cde360 /src/html | |
parent | 46837a6b7186afd9fc2a45b6152672e553ac2c9e (diff) | |
download | chawan-3c3f0f1035d7b71d1993c38ca630095699972f61.tar.gz |
WindowAttributes: refactor
* rename module (window -> winattrs, to avoid conflict with env/window) * do not use result * remove unused cell_ratio
Diffstat (limited to 'src/html')
-rw-r--r-- | src/html/dom.nim | 2 | ||||
-rw-r--r-- | src/html/env.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/html/dom.nim b/src/html/dom.nim index 3931ae69..c28cc0e5 100644 --- a/src/html/dom.nim +++ b/src/html/dom.nim @@ -10,7 +10,7 @@ import tables import css/cssparser import css/sheet import css/values -import display/window +import display/winattrs import html/enums import html/event import img/bitmap diff --git a/src/html/env.nim b/src/html/env.nim index 24e1482d..6046ee2b 100644 --- a/src/html/env.nim +++ b/src/html/env.nim @@ -1,7 +1,7 @@ import selectors import streams -import display/window +import display/winattrs import html/chadombuilder import html/dom import html/event |