aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dom.client.moon
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2018-11-01 10:17:55 +0000
committers-ol <s-ol@users.noreply.github.com>2018-11-01 10:17:55 +0000
commit30fb0dc40d595b9e0b7747ad8e5c4e8cf7e3023b (patch)
treedc56f20ec4d78115e15761c402589b5aec94ef55 /lib/dom.client.moon
parentdefer all scripts (diff)
downloadmmm-30fb0dc40d595b9e0b7747ad8e5c4e8cf7e3023b.tar.gz
mmm-30fb0dc40d595b9e0b7747ad8e5c4e8cf7e3023b.zip
move mmm code from lib to mmm etc
Diffstat (limited to 'lib/dom.client.moon')
-rw-r--r--lib/dom.client.moon33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/dom.client.moon b/lib/dom.client.moon
deleted file mode 100644
index acdbfa4..0000000
--- a/lib/dom.client.moon
+++ /dev/null
@@ -1,33 +0,0 @@
-element = (element) -> (...) ->
- children = { ... }
-
- -- attributes are last arguments but mustn't be a ReactiveVar
- attributes = children[#children]
- if 'table' == (type attributes) and not attributes.node
- table.remove children
- else
- attributes = {}
-
- with e = document\createElement element
- for k,v in pairs attributes
- k = 'className' if k == 'class'
- if k == 'style' and 'table' == type v
- for kk,vv in pairs v
- e.style[kk] = vv
- elseif 'string' == type k
- e[k] = v
-
- -- if there is only one argument,
- -- children can be in attributes table too
- if #children == 0
- children = attributes
-
- for child in *children
- if 'string' == type child
- child = document\createTextNode child
-
- e\appendChild child
-
-setmetatable {}, __index: (name) =>
- with val = element name
- @[name] = val