Defining mute property for HTML5AudioSoundManager class

This commit is contained in:
Pavle Goloskokovic 2018-01-08 19:31:26 +01:00
parent d3caa815d1
commit 86cccd53ee

View file

@ -33,4 +33,10 @@ var HTML5AudioSoundManager = new Class({
this.onBlurPausedSounds = null; this.onBlurPausedSounds = null;
} }
}); });
Object.defineProperty(HTML5AudioSoundManager.prototype, 'mute', {
get: function () {
},
set: function (value) {
}
});
module.exports = HTML5AudioSoundManager; module.exports = HTML5AudioSoundManager;