Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(document).ready(function($){
- jQuery(window).on('resize orientationchange', function($) {
- clearTimeout(jQuery.data(this, 'resizeTimer'));
- jQuery.data(this, 'resizeTimer', setTimeout(function() {
- for (var i = 0; i < ls_curr_slider.length; i++) {
- if (typeof ls_curr_slider[i] != 'undefined') {
- ls_curr_slider[i].destroySlider();
- ls_curr_slider[i] = undefined;
- }
- }
- for (var key in lssliderparam) {
- console.log(lssliderparam[key]['divid']);
- jQuery(lssliderparam[key]['divid']).css("opacity", 1).parent().prop( "style", null );
- }
- ls_trigger_sliders();
- }, 500));
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment