$(function(){ $('.modalframe').modaal({ type: 'ajax', width: 940, height: 600, //loading_content: 'Loading content', ajax_success: goslick }); $(document).on('click','.mdclose',function(){ $('.modalframe').modaal('close'); }); function goslick(){ setTimeout(function(){ $('.gallery').slick(gallery()); $('.thumb').slick(thumb()); $('#mdcontents .fbox').removeClass('init'); }, 100); } }); function gallery(){ return{ //slidesToShow: 1, slidesToScroll: 1, arrows: false, fade: true, asNavFor: '.thumb' } } function thumb(){ return{ slidesToShow: 5, slidesToScroll: 1, asNavFor: '.gallery', arrows: false, //dots: true, centerMode: true, focusOnSelect: true } } $(window).on('load',function(){ }); $(window).on('resize',function () { }); $(window).on('orientationchange', function(){ });