aboutsummaryrefslogtreecommitdiffstats
path: root/root/experiments/init.moon
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2018-11-06 07:19:59 +0000
committers-ol <s-ol@users.noreply.github.com>2018-11-06 07:19:59 +0000
commita7e539c272ffcd9e14fb58f8c24714cdff8e7c17 (patch)
tree404f92906bd402b1c394f7b521508b5138e76d98 /root/experiments/init.moon
parentinspect mode wip (diff)
parentadd metadata for compilation (diff)
downloadmmm-a7e539c272ffcd9e14fb58f8c24714cdff8e7c17.tar.gz
mmm-a7e539c272ffcd9e14fb58f8c24714cdff8e7c17.zip
Merge branch 'tru-fs' into inspect-mode
Diffstat (limited to 'root/experiments/init.moon')
-rw-r--r--root/experiments/init.moon27
1 files changed, 0 insertions, 27 deletions
diff --git a/root/experiments/init.moon b/root/experiments/init.moon
deleted file mode 100644
index ad3e06a..0000000
--- a/root/experiments/init.moon
+++ /dev/null
@@ -1,27 +0,0 @@
-import div, h3, ul, li, a from require 'mmm.dom'
-import define_fileders from require 'mmm.mmmfs'
-Fileder = define_fileders ...
-require = relative ...
-
-Fileder {
- 'name: alpha': 'experiments',
- 'title: text/plain': 'various experiments',
- 'fn -> mmm/dom': (path) => div {
- h3 @gett 'title: text/plain', style: { 'margin-bottom': '-.5em' },
- ul for child in *@children
- name = child\gett 'name: alpha'
- desc = child\gett 'description: text/plain'
- li {
- a name, {
- href: child.path,
- onclick: (e) =>
- e\preventDefault!
- BROWSER\navigate child.path
- },
- ': ', desc
- }
- }
-
- require '.center_of_mass'
- require '.tags'
-}