Hey,
I’m having some troubles getting the callbacks to work within the .init function. I have it setup as so
amplitude.init({
callbacks: {
initialized: function(){
console.log("initialised")
},
stop: function(){
console.log("Audio has been stopped.")
}
}
});
Neither these callbacks are firing, but everything else is working as expected (I’m loading songs using .addPlaylist() later on).
I’ve also noticed a few public functions aren’t working. Could anyone shed some light here?
Thanks, Harry.