| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ict/wp-content/plugins/so-widgets-bundle/widgets/layout-slider/js/ |
Upload File : |
/* globals jQuery */
jQuery( function ( $ ) {
$( '.sow-slide-control' ).on( 'click', function( e ) {
var $$ = $( this ),
cycleContainer = $$.parents( '.sow-slider-images' );
slideValue = $$.attr( 'href' ).substr( 1 );
e.preventDefault();
if ( ! isNaN( slideValue ) ) {
cycleContainer.cycle( 'goto', Math.abs( slideValue - 1 ) );
} else {
switch ( slideValue ) {
case 'first':
cycleContainer.cycle( 'goto', 0 );
break;
case 'last':
cycleContainer.cycle( 'goto', cycleContainer.find( '.sow-slider-image:not(.cycle-sentinel)' ).length - 1 );
break;
case 'next':
cycleContainer.cycle( 'next' );
break;
case 'previous':
cycleContainer.cycle( 'prev' );
break;
}
}
} );
} );