summaryrefslogtreecommitdiffstats
path: root/layouts/partials/scripts.html
diff options
context:
space:
mode:
authorDSRKafuU2020-06-04 07:21:13 -0500
committerGitHub2020-06-04 07:21:13 -0500
commit73244a2e55dffa158027126346eefd5bafa5fea8 (patch)
treec98ee9fbdb6f474579aa769a2a4b0b4c98fd21f1 /layouts/partials/scripts.html
parentaa5290aeef9df1c583fdf30290351968df9215dc (diff)
parent914bf54c493b299268c293be33a8babf99b1cce2 (diff)
downloadhugo-theme-fuji-73244a2e55dffa158027126346eefd5bafa5fea8.tar.gz
hugo-theme-fuji-73244a2e55dffa158027126346eefd5bafa5fea8.tar.bz2
hugo-theme-fuji-73244a2e55dffa158027126346eefd5bafa5fea8.zip
Merge pull request #24 from amzrk2/dev
v2 pre-release
Diffstat (limited to 'layouts/partials/scripts.html')
-rw-r--r--layouts/partials/scripts.html97
1 files changed, 0 insertions, 97 deletions
diff --git a/layouts/partials/scripts.html b/layouts/partials/scripts.html
deleted file mode 100644
index 6bcdd8b..0000000
--- a/layouts/partials/scripts.html
+++ /dev/null
@@ -1,97 +0,0 @@
-<!-- init zoomable images -->
-<script>
- $(function () {
- mediumZoom('.img-zoomable', {
- margin: 32
- });
- });
-</script>
-
-<!-- utterances comment loading indicator -->
-{{ if ne .Params.noComments true }}
-{{ if and (.IsPage) (.Site.Params.utterancesRepo) }}
-<script>
- $(function () {
- var commentStatus;
- var commentLoadingTime = 0;
- var commentCheckInterval = self.setInterval(checkUtterances, 500);
-
- function checkUtterances() {
- commentStatus = $('.post-comment .utterances').attr('style');
- if (commentStatus == undefined) {
- commentLoadingTime += 1;
- if (commentLoadingTime > 20) {
- clearInterval(commentCheckInterval);
- $('.post-comment').hide();
- $('.post-loading p').text('{{ i18n "postCommentLoadingFailed" }}');
- $('.post-loading i').attr('class', 'far fa-times-circle');
- }
- return;
- } else {
- clearInterval(commentCheckInterval);
- $('.post-loading').hide();
- }
- }
- });
-</script>
-{{ end }}
-{{ end }}
-
-<!-- toc smooth scroll & APlayer cjk html anchor fix -->
-{{ if in .Site.Params.mainSections .Type }}
-<script>
- $('.widget-toc a').click(function () {
- $('html, body').animate({
- scrollTop: $($(this).attr('href')).offset().top
- });
- });
-</script>
-{{ end }}
-{{ if .Site.Params.scrollTop }}
-<!-- scroll to top button -->
-<script>
- $('#scroll-top').click(function () {
- $('html, body').animate({
- scrollTop: 0
- });
- });
-</script>
-{{ end }}
-
-<!-- in-post APlayer -->
-{{ with .Params.playerURL }}
-<script>
- $(function () {
- const postAPlayer = new APlayer({
- container: document.getElementById('post-aplayer'),
- theme: '#8F82BC',
- volume: 0.1,
- audio: [{
- name: '{{ $.Params.playerName }}',
- artist: '{{ $.Params.playerArtist }}',
- url: '{{ . }}',
- cover: '{{ $.Params.playerCover }}'
- }]
- });
- });
-</script>
-{{ end }}
-<!-- site global APlayer -->
-{{ with .Site.Params.playerURL }}
-<script>
- $(function () {
- const siteAPlayer = new APlayer({
- container: document.getElementById('aplayer'),
- fixed: true,
- theme: '#8F82BC',
- volume: 0.1,
- audio: [{
- name: '{{ $.Site.Params.playerName }}',
- artist: '{{ $.Site.Params.playerArtist }}',
- url: '{{ . }}',
- cover: '{{ $.Site.Params.playerCover }}'
- }]
- });
- });
-</script>
-{{ end }} \ No newline at end of file