mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 13:43:26 +00:00
added super calls to pause and resume methods for WebAudioSound
This commit is contained in:
parent
d1fcc39fd3
commit
ead02ec186
1 changed files with 2 additions and 0 deletions
|
@ -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 () {
|
||||
|
|
Loading…
Reference in a new issue