aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/MenuItem.mjs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/MenuItem.mjs b/src/MenuItem.mjs
index 4d321ae..aabafb2 100644
--- a/src/MenuItem.mjs
+++ b/src/MenuItem.mjs
@@ -90,6 +90,10 @@ export const pickLayoutItem = ({ container, layouts }) =>
90 onclick: () => container.setAttribute('data-layout', layout.name), 90 onclick: () => container.setAttribute('data-layout', layout.name),
91 }), 91 }),
92 ), 92 ),
93 new Item({
94 innerHTML: '<a href="https://github.com/outdoorsafetylab/dumbymap#layouts" style="display: block; padding: 0.5rem;">More...</a>',
95 style: 'padding: 0;'
96 }),
93 ], 97 ],
94 }); 98 });
95 99