fd734635d9
- Add closeOnBackdrop(modal, evt) to utils._hs for modal backdrop clicks - Add scrollToTop(evt) to utils._hs for smooth scroll to top - Simplify 3 modal templates (shortcuts, info, pdf) from 4 lines to 1 - Simplify back-to-top button from 3 lines to 1
12 lines
524 B
HTML
12 lines
524 B
HTML
{{define "back-to-top"}}
|
|
<!-- Back to Top Link - Hyperscript smooth scroll without URL pollution -->
|
|
<button id="back-to-top"
|
|
class="back-to-top no-print has-tooltip tooltip-left"
|
|
aria-label="{{if eq .Lang "es"}}Volver arriba{{else}}Back to top{{end}}"
|
|
data-tooltip="{{if eq .Lang "es"}}Volver arriba{{else}}Back to top{{end}}"
|
|
style="display: none;"
|
|
_="on click call scrollToTop(event)">
|
|
<iconify-icon icon="mdi:arrow-up" width="24" height="24"></iconify-icon>
|
|
</button>
|
|
{{end}}
|