We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ede81f2 commit 162a063Copy full SHA for 162a063
1 file changed
src/sound/html5/HTML5AudioSound.js
@@ -69,6 +69,11 @@ var HTML5AudioSound = new Class({
69
destroy: function () {
70
BaseSound.prototype.destroy.call(this);
71
// TODO release all HTML5 Audio tag related stuff
72
+ },
73
+ setMute: function () {
74
+ if (this.audio) {
75
+ this.audio.muted = this.currentConfig.mute || this.manager.mute;
76
+ }
77
}
78
});
79
module.exports = HTML5AudioSound;
0 commit comments