remove console.log

This commit is contained in:
fin444 2022-07-27 08:08:06 -04:00
parent 7ecc7d1d5f
commit d7d45465cd

View file

@ -21,7 +21,6 @@ function toggleIcons() {
img.src = img.src.replace("media/icons/" + (newIcons ? "old" : "new"), "media/icons/" + newOrOld); img.src = img.src.replace("media/icons/" + (newIcons ? "old" : "new"), "media/icons/" + newOrOld);
} }
for (let i = 0; i < divs.length; i++) { for (let i = 0; i < divs.length; i++) {
console.log(divs.item(i))
divs.item(i).style.backgroundImage = "url('../media/items/" + (newIcons ? "new" : "old") + ".png')"; divs.item(i).style.backgroundImage = "url('../media/items/" + (newIcons ? "new" : "old") + ".png')";
} }
} }