File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/slide-control.js.tar
httpdocs/wp-content/plugins/so-widgets-bundle/widgets/layout-slider/js/slide-control.js 0000644 00000001362 15155001200 0033731 0 ustar 00 var/www/vhosts/uyarreklam.com.tr /* 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;
}
}
} );
} );