| Server IP : 27.254.66.5 / Your IP : 216.73.217.39 Web Server : Apache/2 System : Linux cs82.hostneverdie.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64 User : technic2 ( 1951) PHP Version : 7.4.30 Disable Function : apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd,exec, fp, fput, highlight_file, ini_alter, ini_restore, inject_code, passthru,phpAds_remoteInfo, phpAds_XmlRpc,phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid,posix_setuid, posix_setuid, posix_uname,proc_open,proc_close, proc_get_status, proc_nice, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode, show_source,sleep,pcntl_exec,virtual,suexec,dbmopen,dl,symlink,disk_free_space,diskfreespace,leak MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/technic2/domains/technicrayong.ac.th/private_html/js/ |
Upload File : |
(function($) {
"use strict"
const versionSelect = $('#theme_version');
const layoutSelect = $('#theme_layout');
const sidebarStyleSelect = $('#sidebar_style');
const sidebarPositionSelect = $('#sidebar_position');
const headerPositionSelect = $('#header_position');
const containerLayoutSelect = $('#container_layout');
const themeDirectionSelect = $('#theme_direction');
versionSelect.on('change', function() {
$('body').attr('data-theme-version', this.value);
});
sidebarPositionSelect.on('change', function() {
$('body').attr('data-sidebar-position', this.value);
});
headerPositionSelect.on('change', function() {
$('body').attr('data-header-position', this.value);
});
themeDirectionSelect.on('change', function() {
$('html').attr('dir', this.value);
$('html').attr('class', '');
$('html').addClass(this.value);
$('body').attr('direction', this.value);
});
layoutSelect.on('change', function() {
if($('body').attr('data-sidebar-style') === 'overlay') {
$('body').attr('data-sidebar-style', 'full');
$('body').attr('data-layout', this.value);
return;
}
$('body').attr('data-layout', this.value);
});
containerLayoutSelect.on('change', function() {
if(this.value === "boxed") {
// if($('body').attr('data-sidebar-style') === "overlay" && $('body').attr('data-layout') === "horizontal") {
// $('body').attr('data-sidebar-style', 'full');
// $('body').attr('data-container', this.value);
// return;
// }
if($('body').attr('data-layout') === "vertical" && $('body').attr('data-sidebar-style') === "full") {
$('body').attr('data-sidebar-style', 'overlay');
$('body').attr('data-container', this.value);
return;
}
}
$('body').attr('data-container', this.value);
});
sidebarStyleSelect.on('change', function() {
if($('body').attr('data-layout') === "horizontal") {
if(this.value === "overlay") {
alert("Sorry! Overlay is not possible in Horizontal layout.");
return;
}
}
if($('body').attr('data-layout') === "vertical") {
if($('body').attr('data-container') === "boxed" && this.value === "full") {
alert("Sorry! Full menu is not available in Vertical Boxed layout.");
return;
}
}
$('body').attr('data-sidebar-style', this.value);
});
$('input[name="navigation_header"]').on('click', function() {
$('body').attr('data-nav-headerbg', this.value);
});
$('input[name="header_bg"]').on('click', function() {
$('body').attr('data-headerbg', this.value);
});
$('input[name="sidebar_bg"]').on('click', function() {
$('body').attr('data-sibebarbg', this.value);
});
})(jQuery);