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

15 lines
494 B
HTML
Raw Normal View History

2019-11-04 13:09:44 +00:00
{{ if $.Param "enableCustomScrollbar" }}
2019-11-05 08:51:53 +00:00
{{ $customscrollbar := resources.Get `js/perfect-scrollbar.jquery.min.js` | resources.Fingerprint }}
2019-11-05 09:22:06 +00:00
<script defer src="{{ $customscrollbar.RelPermalink }}"></script>
2019-11-05 09:44:35 +00:00
{{ $customScrollbarStyle := resources.Get "css/perfect-scrollbar.min.css" | minify }}
<link rel="stylesheet" href="{{ $customScrollbarStyle.RelPermalink }}">
2019-11-04 13:09:44 +00:00
2019-11-05 09:22:06 +00:00
<script>
$(document).ready(function () {
var pre = $('pre');
pre.perfectScrollbar();
2019-11-05 09:26:22 +00:00
});
2019-11-04 13:09:44 +00:00
</script>
{{ end }}