PluginProbe ʕ •ᴥ•ʔ
Responsive Lightbox & Gallery / 1.0.1
Responsive Lightbox & Gallery v1.0.1
2.7.8 trunk 1.0.0 1.0.1 1.0.1.1 1.0.2 1.0.3 1.0.4 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.4.0 1.4.0.1 1.4.1 1.4.11 1.4.12 1.4.13 1.4.14 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.1 1.6.10 1.6.11 1.6.12 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.3.1 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.6.0 2.6.1 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7
responsive-lightbox / js / responsive-lightbox-admin.js
responsive-lightbox / js Last commit date
responsive-lightbox-admin.js 13 years ago responsive-lightbox-front.js 13 years ago
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 });