blob: da47569dff7849aefdf3fcf1b9cef2557266852f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<div class="menuButton">
<button type="button" class="material-symbols more-horiz" _="
on click
set menu to next .popupMenu
toggle @hidden on menu
measure me then set pos to it
set menu.style.top to `${scrollY + pos.top}px`
set menu.style.right to `${(scrollX + innerWidth) - pos.right}px`
on click from elsewhere set @hidden of next .popupMenu to false
"></button>
<ul class="popupMenu" hidden>
<?php slot(); ?>
</ul>
</div>
|