Setting loop value at the end of applyConfig method

This commit is contained in:
Pavle Goloskokovic 2017-12-12 20:21:42 +01:00
parent 0e5b2594c5
commit dca07e84fb

View file

@ -263,9 +263,9 @@ var BaseSound = new Class({
applyConfig: function () {
this.mute = this.currentConfig.mute;
this.volume = this.currentConfig.volume;
this.loop = this.currentConfig.loop;
this.rate = this.currentConfig.rate;
this.detune = this.currentConfig.detune;
this.loop = this.currentConfig.loop;
// TODO assign other config values to buffer source
},
/**