commented out console.log statements for textureButtons in start function

This commit is contained in:
2026-01-16 18:12:29 +01:00
parent e6b271a4c0
commit 86c6fab546

View File

@@ -261,7 +261,7 @@ const start = async () => {
document.querySelectorAll(".texture-button[name=maniglia]").forEach(el => el.checked = false) document.querySelectorAll(".texture-button[name=maniglia]").forEach(el => el.checked = false)
console.log(textureButtons) //console.log(textureButtons)
if(player.swapModel(modello)){ if(player.swapModel(modello)){
for(let el in radios){ for(let el in radios){
@@ -318,7 +318,7 @@ const start = async () => {
} }
$("#larghezza").first().trigger("change"); $("#larghezza").first().trigger("change");
console.log(textureButtons); //console.log(textureButtons);
$(textureButtons).each((i, el) => { $(textureButtons).each((i, el) => {
$(el).trigger("click"); $(el).trigger("click");
}); });