HEX
Server: LiteSpeed
System: Linux eko108.isimtescil.net 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: uyarreklamcomtr (11202)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
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.js000064400000001362151550012000033731 0ustar00var/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;
			}
		}
	} );
} );