Skip to content

Commit 068fc6d

Browse files
Renamed 'marker' param of play method to 'markerName' to avoid any confusion for WebAudioSound
1 parent d367dc1 commit 068fc6d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

v3/src/sound/webaudio/WebAudioSound.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ var WebAudioSound = new Class({
5555
this.duration = this.audioBuffer.duration;
5656
this.totalDuration = this.audioBuffer.duration;
5757
},
58-
play: function (marker, config) {
59-
if (!BaseSound.prototype.play.call(this, marker, config)) {
58+
play: function (markerName, config) {
59+
if (!BaseSound.prototype.play.call(this, markerName, config)) {
6060
return null;
6161
}
6262
this.stopAndRemoveBufferSource();

0 commit comments

Comments
 (0)