diff options
Diffstat (limited to 'searcher')
-rw-r--r-- | searcher/index.html | 6 | ||||
-rw-r--r-- | searcher/script.js | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/searcher/index.html b/searcher/index.html index 963c74b..96a877f 100644 --- a/searcher/index.html +++ b/searcher/index.html @@ -5,7 +5,7 @@ <meta name="viewport" content="width=device-width"> <meta name="description" content="A simple utility to help you work out what chips do."> <meta name="author" content="recnet/winrg"> - <title>CV2 Chip Searcher</title> + <title>RRC Chip Searcher</title> <link rel="manifest" href="/pwathings/manifest.json" /> <link crossorigin href="style.css" rel="stylesheet" type="text/css" /> @@ -18,8 +18,8 @@ <link crossorigin href="/lib/chips.css" rel="preload" as="style"/> <link crossorigin href="style.css" rel="preload" as="style"/> <link crossorigin href="/terms.json" rel="preload" as="fetch"/> - <link crossorigin href="/circuitsv2.json" rel="preload" as="fetch"/> - <link crossorigin href="https://raw.githubusercontent.com/tyleo-rec/CircuitsV2Resources/master/misc/circuitsv2.json" rel="preload" as="fetch"/> + <link crossorigin href="/circuits.json" rel="preload" as="fetch"/> + <link crossorigin href="https://raw.githubusercontent.com/tyleo-rec/CircuitsV2Resources/master/misc/circuits.json" rel="preload" as="fetch"/> <script crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/6.4.6/fuse.min.js"></script> <script crossorigin src="/lib/util.js"></script> diff --git a/searcher/script.js b/searcher/script.js index e8ffec3..e452b5f 100644 --- a/searcher/script.js +++ b/searcher/script.js @@ -65,7 +65,7 @@ window.addEventListener("load", async (e) => { form.filterSug.checked = localStorage.getItem("fsug"); } - let v2pr = fetch(/*"https://raw.githubusercontent.com/tyleo-rec/CircuitsV2Resources/master/misc/circuitsv2.json"/*/"/circuitsv2.json") + let v2pr = fetch(/*"https://raw.githubusercontent.com/tyleo-rec/CircuitsV2Resources/master/misc/circuitsv2.json"/*/"/circuits.json") .then(res => res.json()); let termspr = fetch("/terms.json") .then(res => res.json()); |