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

14 lines
481 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-04 13:09:44 +00:00
{{ $customScrollbarStyle := resources.Get "css/perfect-scrollbar.min.css" }}
2019-11-05 09:22:06 +00:00
<script defer src="{{ $customScrollbarStyle.RelPermalink }}"></script>
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-04 13:09:44 +00:00
</script>
{{ end }}