Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jacopo-nosto
Created June 29, 2018 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacopo-nosto/7ff54c1d9c4a59036392e6d690bf9ad1 to your computer and use it in GitHub Desktop.
Save jacopo-nosto/7ff54c1d9c4a59036392e6d690bf9ad1 to your computer and use it in GitHub Desktop.
Check if Slick has been loaded
function initMe(){
if(typeof _targetWindow.jQuery.fn.slick !== 'undefined'){
launchCarousel();
}else{
setTimeout(initMe, 300);
}
}
initMe();
_targetWindow.jQuery("#$divId .nosto-carousel").on('init', function(slick){
_targetWindow.jQuery("#$divId").fadeTo("slow",1);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment