15 lines
332 B
HTML
15 lines
332 B
HTML
{{ if $.Param "enableGoToTop" }}
|
|
<div id="gtt">
|
|
<div class="gtt">
|
|
{{ partial "svgs/arrow/keyboard-arrow-up.svg" (dict "width" 32 "height" 32) }}
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('.gtt').click(function() {
|
|
$("html, body").animate({ scrollTop: 0 }, 250);
|
|
});
|
|
});
|
|
</script>
|
|
{{ end }} |