Skip to content

Commit 1a38273

Browse files
Implemented resumeAll method
1 parent 17dee3c commit 1a38273

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

v3/src/sound/BaseSoundManager.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,11 @@ var BaseSoundManager = new Class({
141141
sound.pause();
142142
});
143143
},
144-
resumeAll: NOOP,
144+
resumeAll: function () {
145+
this.sounds.forEach(function (sound) {
146+
sound.resume();
147+
});
148+
},
145149
stopAll: function () {
146150
this.sounds.forEach(function (sound) {
147151
sound.stop();

0 commit comments

Comments
 (0)