From e38eaa94d6d0d91486bd3b778102658a36ee254f Mon Sep 17 00:00:00 2001
From: Vincent Huang <vincenthuang75025@yahoo.com>
Date: Sun, 21 Aug 2022 01:31:06 +0000
Subject: [PATCH] Popover preview should show relevant heading (#180)
---
layouts/partials/head.html | 40 +++++++++++++++++++++-------------------
1 files changed, 21 insertions(+), 19 deletions(-)
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index acc2efd..6b465da 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -112,25 +112,7 @@
{{if $.Site.Data.config.enableCallouts -}}
addCollapsibleCallouts();
{{ end }}
-
- {{if $.Site.Data.config.enableFooter}}
- const container = document.getElementById("graph-container")
- // retry if the graph is not ready
- if (!container) return requestAnimationFrame(render)
- // clear the graph in case there is anything within it
- container.textContent = ""
-
- const drawGlobal = isHome && {{$.Site.Data.graphConfig.enableGlobalGraph}};
- drawGraph(
- {{strings.TrimRight "/" .Site.BaseURL}},
- drawGlobal,
- {{$.Site.Data.graphConfig.paths}},
- drawGlobal ? {{$.Site.Data.graphConfig.globalGraph}} : {{$.Site.Data.graphConfig.localGraph}}
- );
-
- {{end}}
-
-
+
{{if $.Site.Data.config.enableLinkPreview}}
initPopover(
{{strings.TrimRight "/" .Site.BaseURL }},
@@ -138,6 +120,26 @@
{{$.Site.Data.config.enableLatex}}
)
{{end}}
+
+ {{if $.Site.Data.config.enableFooter}}
+ const footer = document.getElementById("footer")
+ if (footer) {
+ const container = document.getElementById("graph-container")
+ // retry if the graph is not ready
+ if (!container) return requestAnimationFrame(render)
+ // clear the graph in case there is anything within it
+ container.textContent = ""
+
+ const drawGlobal = isHome && {{$.Site.Data.graphConfig.enableGlobalGraph}};
+ drawGraph(
+ {{strings.TrimRight "/" .Site.BaseURL}},
+ drawGlobal,
+ {{$.Site.Data.graphConfig.paths}},
+ drawGlobal ? {{$.Site.Data.graphConfig.globalGraph}} : {{$.Site.Data.graphConfig.localGraph}}
+ );
+
+ }
+ {{end}}
}
const init = (doc = document) => {
--
Gitblit v1.10.0