Implemented mute property getter for HTML5AudioSoundManager class

This commit is contained in:
Pavle Goloskokovic 2018-01-08 19:32:09 +01:00
parent 86cccd53ee
commit 8c5610416a

View file

@ -35,6 +35,7 @@ var HTML5AudioSoundManager = new Class({
}); });
Object.defineProperty(HTML5AudioSoundManager.prototype, 'mute', { Object.defineProperty(HTML5AudioSoundManager.prototype, 'mute', {
get: function () { get: function () {
return this._mute;
}, },
set: function (value) { set: function (value) {
} }