Questo è una pagina di test in SHOPY 2.0 pre verificare i widget disponibili nel tema.
/* mute unmute */
var muteToggle = _this31.element.children["0"].childNodes["3"];
if(muteToggle) {
var iconOff = _this31.element.children["0"].childNodes["3"].childNodes["1"].children["0"];
var iconOn = _this31.element.children["0"].childNodes["3"].childNodes["1"].children["1"];
muteToggle.addEventListener('click', function(){
if (_this31.player.isMuted()) {
_this31.player.unMute();
iconOn.classList.add('visible');
iconOff.classList.remove('visible');
} else {
_this31.player.mute();
iconOff.classList.add('visible');
iconOn.classList.remove('visible');
}
})
}
/**/