You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be nice to have Event that can be fired right after Slider initialization
Current onInit callback invoking to earlier. At this stage, we can't get the information regarding the current carousel state, items, events, etc...
version: 2.6
The text was updated successfully, but these errors were encountered:
I jumped over this ticket because I've needed that as well. Here is what I've done:
let sliderPromise = new Promise(function(sliderResolve) {
const slider = tns({
container: '.slider',
autoplay: true,
// ...
});
sliderResolve(slider.getInfo().container);
});
sliderPromise.then(function(sliderContainer){
// .. code after the slider has been built up
});
Would be nice to have Event that can be fired right after Slider initialization
Current onInit callback invoking to earlier. At this stage, we can't get the information regarding the current carousel state, items, events, etc...
version: 2.6
The text was updated successfully, but these errors were encountered: