diff --git a/src/sound/html5/HTML5AudioSound.js b/src/sound/html5/HTML5AudioSound.js index 1a0770068..3baf58ff3 100644 --- a/src/sound/html5/HTML5AudioSound.js +++ b/src/sound/html5/HTML5AudioSound.js @@ -294,6 +294,9 @@ Object.defineProperty(HTML5AudioSound.prototype, 'mute', { }, set: function (value) { this.currentConfig.mute = value; + if (this.checkTouchLocked('property', 'mute', value)) { + return; + } this.setMute(); this.emit('mute', this, value); }