From 361600052c49b3cb1628283eade4dd15993cfec7 Mon Sep 17 00:00:00 2001 From: alyx Date: Thu, 2 Jun 2022 21:06:34 +0000 Subject: Rebranding II --- grapher/script.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'grapher/script.js') diff --git a/grapher/script.js b/grapher/script.js index 3e3a155..4df4516 100644 --- a/grapher/script.js +++ b/grapher/script.js @@ -34,7 +34,7 @@ Serialization format: */ -var rrcdata; +var r2cdata; var graph; var searcher; const rootel = document.documentElement; @@ -137,7 +137,7 @@ function delConnections(el) { function newChip(GUID) { const types = {}; - const typeParams = rrcdata.Nodes[GUID].NodeDescs[0].ReadonlyTypeParams; + const typeParams = r2cdata.Nodes[GUID].NodeDescs[0].ReadonlyTypeParams; for (const desc of Object.keys(typeParams)) types[desc] = [ `${desc}: ${typeParams[desc]}`, @@ -146,7 +146,7 @@ function newChip(GUID) { const ne = newEl('div', 'chipbox'); const chipcontainer = newEl('div', 'selUI'); - chipcontainer.append(generateChipHTML(rrcdata.Nodes[GUID].NodeDescs)); + chipcontainer.append(generateChipHTML(r2cdata.Nodes[GUID].NodeDescs)); ne.append(chipcontainer); graph.append(ne); @@ -159,7 +159,7 @@ function newChip(GUID) { el: ne, typeInfo: types, currentOverrides: {}, - nd: rrcdata.Nodes[GUID].NodeDescs, + nd: r2cdata.Nodes[GUID].NodeDescs, GUID: GUID, }; @@ -294,10 +294,10 @@ async function getPermalink() { window.onload = async function() { graph = document.getElementById("graph"); searcher = document.getElementById("searcher"); - rrcdata = await fetch(/*"https://raw.githubusercontent.com/tyleo-rec/CircuitsV2Resources/master/misc/circuitsv2.json"/*/"/circuits.json") + r2cdata = await fetch(/*"https://raw.githubusercontent.com/tyleo-rec/CircuitsV2Resources/master/misc/circuitsv2.json"/*/"/circuits.json") .then(res => res.json()); - allTypes.push(...ListAllTypes(rrcdata.Nodes).sort((a,b) => (a.toLowerCase() > b.toLowerCase()) ? 1 : -1)); + allTypes.push(...ListAllTypes(r2cdata.Nodes).sort((a,b) => (a.toLowerCase() > b.toLowerCase()) ? 1 : -1)); window.onmessage = function({data}) { clean = false -- cgit v1.2.3-54-g00ecf