diff --git a/content.js b/content.js index e8bcd59..52f6239 100644 --- a/content.js +++ b/content.js @@ -12,10 +12,8 @@ if (isIE()) { // parse data only if tree not loaded already if (getDataFromSessionStorage(repoName + "Tree") === null) { let parsedData = parseData(dataHost, dataDict, jsonDataFile); - // let parsedTreeChildren = parseData(dataHost, dataDict, jsonTreeFile); if(!parsedData.length) throw new Error("index.js: Data error"); keepDataInSessionStorage(repoName + "Tree", JSON.stringify(parsedData)); - // keepDataInSessionStorage(repoName + "TreeChildren", JSON.stringify(parsedTreeChildren)); } initGraph(); diff --git a/dag.js b/dag.js index fcc6b6d..d52f9f4 100644 --- a/dag.js +++ b/dag.js @@ -45,7 +45,7 @@ function initGraph() { let data = structuredClone(treeData); // A clone is made to avoid any modifications in the original data for(let i=0;i