Skip to content

Commit dca07e8

Browse files
Setting loop value at the end of applyConfig method
1 parent 0e5b259 commit dca07e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v3/src/sound/BaseSound.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,9 @@ var BaseSound = new Class({
263263
applyConfig: function () {
264264
this.mute = this.currentConfig.mute;
265265
this.volume = this.currentConfig.volume;
266-
this.loop = this.currentConfig.loop;
267266
this.rate = this.currentConfig.rate;
268267
this.detune = this.currentConfig.detune;
268+
this.loop = this.currentConfig.loop;
269269
// TODO assign other config values to buffer source
270270
},
271271
/**

0 commit comments

Comments
 (0)