diff --git a/v3/src/sound/webaudio/WebAudioSound.js b/v3/src/sound/webaudio/WebAudioSound.js index c8dccad3b..91d7cd79b 100644 --- a/v3/src/sound/webaudio/WebAudioSound.js +++ b/v3/src/sound/webaudio/WebAudioSound.js @@ -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 () {