diff options
Diffstat (limited to 'bundle.js')
| -rw-r--r-- | bundle.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -24737,7 +24737,11 @@ var Sampler = function () { time = time || _tone2.default.now(); player.playbackRate = freq / best.sample.root; - player.start(time); + if (player.loaded) { + player.start(time); + } else { + console.log('loading'); + } return player; } }]); |
