added super calls to pause and resume methods for WebAudioSound

This commit is contained in:
Pavle Goloskokovic 2017-11-17 15:23:52 +01:00
parent d1fcc39fd3
commit ead02ec186

View file

@ -59,9 +59,11 @@ var WebAudioSound = new Class({
return this;
},
pause: function () {
BaseSound.prototype.pause.call(this);
return this;
},
resume: function () {
BaseSound.prototype.resume.call(this);
return this;
},
stop: function () {