HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/otbproductions.org.old/wp-content/themes/catch-box/js/catchbox_slider.js
/*!
 * jQuery Cycle set up
 * Version: 1.0
 * Description: Featured slider to display in header.php
 */

jQuery(window).load(function() {
							 
var transition_effect = js_value.transition_effect;
var transition_delay = js_value.transition_delay;
var transition_duration = js_value.transition_duration;

jQuery('#slider-wrap').cycle({ 
     fx:            	transition_effect, // name of transition effect (or comma separated names, ex: 'fade,scrollUp,shuffle') 
	next:  				'#nav-slider .nav-next',    // advances slideshow to next slide 
	prev:  				'#nav-slider .nav-previous',    // advances slideshow to previous slide
	timeout:       		transition_delay,  // milliseconds between slide transitions (0 to disable auto advance) 
	speed:         		transition_duration,  // speed of the transition (any valid fx speed value) 
	pause:         		1,     // true to enable "pause on hover" 
	pauseOnPagerHover: 	1, // true to pause when hovering over pager link 
	width: 				'100%',
	containerResize: 	0,   // resize container to fit largest slide 
	fit:           		1,
	after: function (){
        jQuery(this).parent().css("height", jQuery(this).height());
     }		
});

});