Skip to content

Commit ead02ec

Browse files
added super calls to pause and resume methods for WebAudioSound
1 parent d1fcc39 commit ead02ec

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

v3/src/sound/webaudio/WebAudioSound.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,11 @@ var WebAudioSound = new Class({
5959
return this;
6060
},
6161
pause: function () {
62+
BaseSound.prototype.pause.call(this);
6263
return this;
6364
},
6465
resume: function () {
66+
BaseSound.prototype.resume.call(this);
6567
return this;
6668
},
6769
stop: function () {

0 commit comments

Comments
 (0)