responsive-lightbox-admin.js
36 lines
| 1 | jQuery(document).ready(function($) { |
| 2 | |
| 3 | $('#rl_script, #rl_videos, #rl_galleries, #rl_image_links, #rl_deactivation_delete, #rl_sw_animation, #rl_sw_hide_bars, #rl_pp_animation_speed, #rl_pp_slideshow, #rl_pp_slideshow_autoplay, #rl_pp_title, #rl_pp_allow_resize, #rl_pp_theme, #rl_pp_hide_flash, #rl_pp_wmode, #rl_pp_video_autoplay, #rl_pp_modal, #rl_pp_deeplinking, #rl_pp_overlay_gallery, #rl_pp_keyboard_shortcuts, #rl_pp_social').buttonset(); |
| 4 | |
| 5 | $('#rl-slideshow-yes, #rl-slideshow-no').change(function() |
| 6 | { |
| 7 | if($('#rl-slideshow-yes:checked').val() === 'yes') |
| 8 | { |
| 9 | $('#rl_pp_slideshow_delay').fadeIn(300); |
| 10 | } |
| 11 | else if($('#rl-slideshow-no:checked').val() === 'no') |
| 12 | { |
| 13 | $('#rl_pp_slideshow_delay').fadeOut(300); |
| 14 | } |
| 15 | }); |
| 16 | |
| 17 | $('#rl-hide-bars-yes, #rl-hide-bars-no').change(function() |
| 18 | { |
| 19 | if($('#rl-hide-bars-yes:checked').val() === 'yes') |
| 20 | { |
| 21 | $('#rl_sw_hide_bars_delay').fadeIn(300); |
| 22 | } |
| 23 | else if($('#rl-hide-bars-no:checked').val() === 'no') |
| 24 | { |
| 25 | $('#rl_sw_hide_bars_delay').fadeOut(300); |
| 26 | } |
| 27 | }); |
| 28 | |
| 29 | $(document).on('click', 'input#reset_rl_configuration', function(event) { |
| 30 | if(confirm(rlArgs.resetScriptToDefaults)) { |
| 31 | return true; |
| 32 | } else { |
| 33 | return false; |
| 34 | } |
| 35 | }); |
| 36 | }); |