2019-11-09 19:52:09 +00:00
|
|
|
{{ if $.Param "enableGoToTop" }}
|
2019-11-12 16:00:21 +00:00
|
|
|
<div id="gtt">
|
2019-11-09 19:52:09 +00:00
|
|
|
<div class="gtt">
|
2019-11-22 11:12:02 +00:00
|
|
|
{{ partial "svgs/arrow/keyboard-arrow-up.svg" (dict "width" 32 "height" 32) }}
|
2019-11-09 19:52:09 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
2019-11-17 11:01:09 +00:00
|
|
|
$(document).ready(function() {
|
2019-11-09 19:52:09 +00:00
|
|
|
$('.gtt').click(function() {
|
|
|
|
$("html, body").animate({ scrollTop: 0 }, 250);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{{ end }}
|