Format JS
This commit is contained in:
parent
30a6697c5b
commit
29e2934dc2
@ -218,4 +218,3 @@ async function drawGraph(url, baseUrl, pathColors, depth, enableDrag, enableLege
|
|||||||
.attr("y", d => d.y)
|
.attr("y", d => d.y)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
@ -5,13 +5,13 @@ function htmlToElement(html) {
|
|||||||
return template.content.firstChild
|
return template.content.firstChild
|
||||||
}
|
}
|
||||||
|
|
||||||
function initPopover(base) {
|
function initPopover(baseURL) {
|
||||||
const baseUrl = base.replace(window.location.origin, "") // is this useless?
|
const basePath = baseURL.replace(window.location.origin, "")
|
||||||
document.addEventListener("DOMContentLoaded", () => {
|
document.addEventListener("DOMContentLoaded", () => {
|
||||||
fetchData.then(({ content }) => {
|
fetchData.then(({ content }) => {
|
||||||
const links = [...document.getElementsByClassName("internal-link")]
|
const links = [...document.getElementsByClassName("internal-link")]
|
||||||
links.forEach(li => {
|
links.forEach(li => {
|
||||||
const linkDest = content[li.dataset.src.replace(baseUrl, "")]
|
const linkDest = content[li.dataset.src.replace(basePath, "")]
|
||||||
// const linkDest = content[li.dataset.src]
|
// const linkDest = content[li.dataset.src]
|
||||||
if (linkDest) {
|
if (linkDest) {
|
||||||
const popoverElement = `<div class="popover">
|
const popoverElement = `<div class="popover">
|
||||||
|
Loading…
Reference in New Issue
Block a user