Setting config seek value to value provided to seek property setter

This commit is contained in:
Pavle Goloskokovic 2017-12-05 19:55:48 +01:00
parent d7f65cc003
commit 7920ad3b6d

View file

@ -277,6 +277,7 @@ Object.defineProperty(WebAudioSound.prototype, 'seek', {
} }
}, },
set: function (value) { set: function (value) {
this.currentConfig.seek = value;
} }
}); });
module.exports = WebAudioSound; module.exports = WebAudioSound;