⚝
One Hat Cyber Team
⚝
Your IP:
192.168.31.6
Server IP:
192.168.1.11
Server:
Linux pams 6.1.0-29-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.123-1 (2025-01-02) x86_64
PHP Version:
8.2.28
Buat File
|
Buat Folder
Upload File
Eksekusi
Dir :
~
/
var
/
www
/
pams
/
public
/
assets
/
js
/
Edit File: app.js
/* Template Name: Qovex - Admin & Dashboard Template Author: Themesbrand Version: 2.0.0 Website: https://themesbrand.com/ Contact: themesbrand@gmail.com File: Main Js File */ (function ($) { 'use strict'; function initMetisMenu() { //metis menu $("#side-menu").metisMenu(); } function initLeftMenuCollapse() { $('#vertical-menu-btn').on('click', function (event) { event.preventDefault(); $('body').toggleClass('sidebar-enable'); if ($(window).width() >= 992) { $('body').toggleClass('vertical-collpsed'); } else { $('body').removeClass('vertical-collpsed'); } }); } function initActiveMenu() { // === following js will activate the menu in left side bar based on url ==== $("#sidebar-menu a").each(function () { var pageUrl = window.location.href.split(/[?#]/)[0]; if (this.href == pageUrl) { $(this).addClass("active"); $(this).parent().addClass("mm-active"); // add active to li of the current link $(this).parent().parent().addClass("mm-show"); $(this).parent().parent().prev().addClass("mm-active"); // add active class to an anchor $(this).parent().parent().parent().addClass("mm-active"); $(this).parent().parent().parent().parent().addClass("mm-show"); // add active to li of the current link $(this).parent().parent().parent().parent().parent().addClass("mm-active"); } }); } function initMenuItem() { $(".navbar-nav a").each(function () { var pageUrl = window.location.href.split(/[?#]/)[0]; if (this.href == pageUrl) { $(this).addClass("active"); $(this).parent().addClass("active"); $(this).parent().parent().addClass("active"); $(this).parent().parent().parent().addClass("active"); $(this).parent().parent().parent().parent().addClass("active"); $(this).parent().parent().parent().parent().parent().addClass("active"); $(this).parent().parent().parent().parent().parent().parent().addClass("active"); } }); } function initFullScreen() { $('[data-toggle="fullscreen"]').on("click", function (e) { e.preventDefault(); $('body').toggleClass('fullscreen-enable'); if (!document.fullscreenElement && /* alternative standard method */ !document.mozFullScreenElement && !document.webkitFullscreenElement) { // current working methods if (document.documentElement.requestFullscreen) { document.documentElement.requestFullscreen(); } else if (document.documentElement.mozRequestFullScreen) { document.documentElement.mozRequestFullScreen(); } else if (document.documentElement.webkitRequestFullscreen) { document.documentElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT); } } else { if (document.cancelFullScreen) { document.cancelFullScreen(); } else if (document.mozCancelFullScreen) { document.mozCancelFullScreen(); } else if (document.webkitCancelFullScreen) { document.webkitCancelFullScreen(); } } }); document.addEventListener('fullscreenchange', exitHandler ); document.addEventListener("webkitfullscreenchange", exitHandler); document.addEventListener("mozfullscreenchange", exitHandler); function exitHandler() { if (!document.webkitIsFullScreen && !document.mozFullScreen && !document.msFullscreenElement) { console.log('pressed'); $('body').removeClass('fullscreen-enable'); } } } function initRightSidebar() { // right side-bar toggle $('.right-bar-toggle').on('click', function (e) { $('body').toggleClass('right-bar-enabled'); }); $(document).on('click', 'body', function (e) { if ($(e.target).closest('.right-bar-toggle, .right-bar').length > 0) { return; } $('body').removeClass('right-bar-enabled'); return; }); } function initDropdownMenu() { if (document.getElementById("topnav-menu-content")) { var elements = document.getElementById("topnav-menu-content").getElementsByTagName("a"); for (var i = 0, len = elements.length; i < len; i++) { elements[i].onclick = function (elem) { if (elem.target.getAttribute("href") === "#") { elem.target.parentElement.classList.toggle("active"); elem.target.nextElementSibling.classList.toggle("show"); } } } window.addEventListener("resize", updateMenu); } } function updateMenu() { var elements = document.getElementById("topnav-menu-content").getElementsByTagName("a"); for (var i = 0, len = elements.length; i < len; i++) { if (elements[i].parentElement.getAttribute("class") === "nav-item dropdown active") { elements[i].parentElement.classList.remove("active"); if (elements[i].nextElementSibling !== null) { elements[i].nextElementSibling.classList.remove("show"); } } } } function initComponents() { var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')) var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) { return new bootstrap.Tooltip(tooltipTriggerEl) }); var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')) var popoverList = popoverTriggerList.map(function (popoverTriggerEl) { return new bootstrap.Popover(popoverTriggerEl) }); } function initPreloader() { $(window).on('load', function() { $('#status').fadeOut(); $('#preloader').delay(350).fadeOut('slow'); }); } function initSettings() { if (window.sessionStorage) { var alreadyVisited = sessionStorage.getItem("is_visited"); if (!alreadyVisited) { sessionStorage.setItem("is_visited", "light-mode-switch"); } else { $(".right-bar input:checkbox").prop('checked', false); $("#"+alreadyVisited).prop('checked', true); //updateThemeSetting(alreadyVisited); } } $("#light-mode-switch, #dark-mode-switch, #rtl-mode-switch").on("change", function(e) { //updateThemeSetting(e.target.id); }); } function updateThemeSetting(id) { if($("#light-mode-switch").prop("checked") == true && id === "light-mode-switch"){ $("html").removeAttr("dir"); $("#dark-mode-switch").prop("checked", false); $("#rtl-mode-switch").prop("checked", false); $("#bootstrap-style").attr('href','<?=base_url()?>public/assets/css/bootstrap.min.css'); $("#app-style").attr('href','<?=base_url()?>public/assets/css/app.min.css'); sessionStorage.setItem("is_visited", "light-mode-switch"); } else if($("#dark-mode-switch").prop("checked") == true && id === "dark-mode-switch"){ $("html").removeAttr("dir"); $("#light-mode-switch").prop("checked", false); $("#rtl-mode-switch").prop("checked", false); $("#bootstrap-style").attr('href','<?=base_url()?>public/assets/css/bootstrap-dark.min.css'); $("#app-style").attr('href','<?=base_url()?>public/assets/css/app-dark.min.css'); sessionStorage.setItem("is_visited", "dark-mode-switch"); } else if($("#rtl-mode-switch").prop("checked") == true && id === "rtl-mode-switch"){ $("#light-mode-switch").prop("checked", false); $("#dark-mode-switch").prop("checked", false); $("#bootstrap-style").attr('href','<?=base_url()?>public/assets/css/bootstrap-rtl.min.css'); $("#app-style").attr('href','<?=base_url()?>public/assets/css/app-rtl.min.css'); $("html").attr("dir", 'rtl'); sessionStorage.setItem("is_visited", "rtl-mode-switch"); } } function init() { initMetisMenu(); initLeftMenuCollapse(); initActiveMenu(); initMenuItem(); initFullScreen(); initRightSidebar(); initDropdownMenu(); initComponents(); initSettings(); initPreloader(); Waves.init(); } init(); })(jQuery)
Simpan