Skip to content

Commit

Permalink
hide console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-topway-it authored Aug 14, 2024
1 parent 841ef4a commit 7d91333
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/KnowledgeGraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ KnowledgeGraph = function () {
function HideNodesRec(nodeId) {
var children = Network.getConnectedNodes(nodeId);
// children = children.filter((x) => excludedIds.indexOf(x) === -1);
console.log('children', children);
// console.log('children', children);
var updateNodes = [];
for (var nodeId_ of children) {
if (!(nodeId_ in Data)) {
Expand Down Expand Up @@ -2026,7 +2026,7 @@ $(document).ready(async function () {
container.style.height = config.height;
}

console.log('config', config);
// console.log('config', config);
graph.initialize(container, containerToolbar, containerOptions, config);
});
});
Expand Down

0 comments on commit 7d91333

Please sign in to comment.