Aiden Bai
2022-05-03 771ebd8031819dcaf9e3d6744643677e30c14b64
Merge
1 files modified
3 ■■■■ changed files
assets/js/graph.js 3 ●●●● patch | view | raw | blame | history
assets/js/graph.js
@@ -1,5 +1,4 @@
async function drawGraph(
  url,
  baseUrl,
  pathColors,
  depth,
@@ -10,7 +9,7 @@
  const container = document.getElementById('graph-container')
  const { index, links, content } = await fetchData
  const curPage = url.replace(baseUrl, '')
  const curPage = window.location.href.replace(baseUrl, "").replace(/\/$/g, "")
  const parseIdsFromLinks = (links) => [
    ...new Set(links.flatMap((link) => [link.source, link.target])),