hugo-theme-zzo/layouts/partials/body/perfectscrollbar.html

15 lines
458 B
HTML

{{ if $.Param "enableCustomScrollbar" }}
{{ $customscrollbar := resources.Get `js/perfect-scrollbar.jquery.min.js` | fingerprint }}
{{ $customScrollbarStyle := resources.Get "css/perfect-scrollbar.min.css" }}
<script>
fetchInject([
"{{ $customscrollbar.RelPermalink }}",
"{{ $customScrollbarStyle.RelPermalink }}",
]).then(() => {
var pre = $('pre');
pre.perfectScrollbar();
});
</script>
{{ end }}