From 9d3bbd607687899d173e9087f2782d7460ebee82 Mon Sep 17 00:00:00 2001
From: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue, 03 May 2022 15:53:18 +0000
Subject: [PATCH] Fix active node on graph
---
assets/js/graph.js | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/assets/js/graph.js b/assets/js/graph.js
index c5829e9..c32035d 100644
--- a/assets/js/graph.js
+++ b/assets/js/graph.js
@@ -1,5 +1,5 @@
async function drawGraph(
- url,
+ _url,
baseUrl,
pathColors,
depth,
@@ -10,7 +10,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, '').slice(0, -1)
const parseIdsFromLinks = (links) => [
...new Set(links.flatMap((link) => [link.source, link.target])),
--
Gitblit v1.10.0