From 6cb9731f0667abf5a605cfa96fc411b53ec57a18 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Tue, 3 Sep 2024 18:22:33 -0400 Subject: [PATCH] Touch up --- src/script/randbg.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/randbg.js b/src/script/randbg.js index 29aebcc..f305167 100644 --- a/src/script/randbg.js +++ b/src/script/randbg.js @@ -1,5 +1,5 @@ document.addEventListener("DOMContentLoaded", () => { - fetch('idle-bgs/bgs.json') + fetch('/src/backgrounds/bgs.json') .then(response => response.json()) .then(images => { const randomImage = images[Math.floor(Math.random() * images.length)];