From 8d092a3a4aca9561f3ac852e01518f48c8ef68fe Mon Sep 17 00:00:00 2001
From: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue, 03 May 2022 16:22:51 +0000
Subject: [PATCH] Remove unnecessary 'url' argument in graph.html
---
assets/js/graph.js | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/assets/js/graph.js b/assets/js/graph.js
index c5829e9..e92f7db 100644
--- a/assets/js/graph.js
+++ b/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, '').slice(0, -1)
const parseIdsFromLinks = (links) => [
...new Set(links.flatMap((link) => [link.source, link.target])),
--
Gitblit v1.10.0