We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44ce0ed commit 4e0c274Copy full SHA for 4e0c274
1 file changed
v3/src/sound/webaudio/WebAudioSound.js
@@ -101,7 +101,6 @@ var WebAudioSound = new Class({
101
// \/\/\/ isPlaying = false, isPaused = false \/\/\/
102
this.stopAndRemoveBufferSource();
103
this.startTime = 0;
104
- this.currentConfig.seek = 0;
105
return true;
106
},
107
/**
@@ -115,7 +114,6 @@ var WebAudioSound = new Class({
115
114
var offset = (this.currentMarker ? this.currentMarker.start : 0) + seek;
116
var duration = this.duration - seek;
117
this.startTime = this.manager.context.currentTime - seek;
118
119
this.source = this.manager.context.createBufferSource();
120
this.source.buffer = this.audioBuffer;
121
this.source.connect(this.muteNode);
0 commit comments