HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vm8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: afleverb (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/drakkar_site_dev/wp-content/themes/spiko-dark/admin/assets/js/ajax.js
jQuery(document).ready(function() {
	/* Tabs in welcome page */
		function spiko_dark_welcome_page_tabs(event) {
		   jQuery(event).parent().addClass("active");
		   jQuery(event).parent().siblings().removeClass("active");
		   var tab = jQuery(event).attr("href");
		   jQuery(".spiko-dark-tab-pane").not(tab).css("display", "none");
		   jQuery(tab).fadeIn();
		}
        jQuery(".spiko-dark-nav-tabs li").slice(0,1).addClass("active");
	    jQuery(".spiko-dark-nav-tabs a").click(function(event) {
		   event.preventDefault();
			spiko_dark_welcome_page_tabs(this);
	    });
		/* Tab Spiko Dark height matches admin menu height for scrolling purpouses */
		$tab = jQuery('.spiko-dark-tab-content > div');
		$admin_menu_height = jQuery('#adminmenu').height();
		if( (typeof $tab !== 'undefined') && (typeof $admin_menu_height !== 'undefined') )
		{
		    $newheight = $admin_menu_height - 180;
		    $tab.css('min-height',$newheight);
		}
		jQuery(".spiko-dark-custom-class").click(function(event){
		   event.preventDefault();
		   jQuery('.spiko-dark-nav-tabs li a[href="#changelog"]').click();
		});
});