Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.231.98
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
justhub /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap.native-master
[ DIR ]
drwxr-xr-x
own-carousel-1.0.0
[ DIR ]
drwxr-xr-x
appointment.form.js
1.81
KB
-rw-r--r--
blog.js
120
B
-rw-r--r--
bootstrap.bundle.min.js
77.74
KB
-rw-r--r--
bootstrap.min.js
58.6
KB
-rw-r--r--
category_page.js
184
B
-rw-r--r--
check_overflow.js
2.36
KB
-rw-r--r--
contact.form.js
1.76
KB
-rw-r--r--
custom.js
4.19
KB
-rw-r--r--
detail_page.js
0
B
-rw-r--r--
easyzoom.js
3.98
KB
-rw-r--r--
gtag.js
146
B
-rw-r--r--
head.js.php
209
B
-rw-r--r--
home_scripts.js
3.14
KB
-rw-r--r--
imagesloaded.pkgd.min.js
5.43
KB
-rw-r--r--
isotope.pkgd.min.js
34.49
KB
-rw-r--r--
jquery-3.6.js
126.34
KB
-rw-r--r--
jquery.counterup.min.js
1.04
KB
-rw-r--r--
jquery.easypiechart.min.js
3.9
KB
-rw-r--r--
jquery.js
86.76
KB
-rw-r--r--
jquery.magnific-popup.min.js
19.76
KB
-rw-r--r--
jquery.min.js
82.37
KB
-rw-r--r--
jquery.nav.js
6.61
KB
-rw-r--r--
lightslider.js
46.96
KB
-rw-r--r--
main.js
13.12
KB
-rw-r--r--
modernizr-2.8.3.min.js
15.15
KB
-rw-r--r--
owl.carousel.min.js
41.76
KB
-rw-r--r--
particles.min.js
22.82
KB
-rw-r--r--
plugins.js
2.73
KB
-rw-r--r--
pointer.js
2.7
KB
-rw-r--r--
popper.min.js
20.76
KB
-rw-r--r--
rsmenu-main.js
4.3
KB
-rw-r--r--
script.js
599
B
-rw-r--r--
showmoreless.js
6.07
KB
-rw-r--r--
skill.bars.jquery.js
2.01
KB
-rw-r--r--
slick.min.js
40.97
KB
-rw-r--r--
swiper.min.js
138.17
KB
-rw-r--r--
time-circle.js
33.23
KB
-rw-r--r--
waypoints.min.js
7.86
KB
-rw-r--r--
wow.min.js
8.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rsmenu-main.js
$(document).ready(function () { // Strict Mode "use strict"; //Defines variables var arrow_up = '<i class="fa fa-angle-up" aria-hidden="true"></i>'; var arrow_down = '<i class="fa fa-angle-down" aria-hidden="true"></i>'; var arrow_span = '<span class="rs-menu-parent">' + arrow_down + '</span>'; var close_button = '<div class="sub-menu-close"><i class="fa fa-times" aria-hidden="true"></i>Close</div>'; //Insert all arrow down span element $('.nav-menu .rs-mega-menu').append(arrow_span); $('.nav-menu > .menu-item-has-children').append(arrow_span); $('.nav-menu > .menu-item-has-children .sub-menu > .menu-item-has-children').append(arrow_span); //Insert all close button element $('.nav-menu .menu-item-has-children .sub-menu').append(close_button); $('.nav-menu .rs-mega-menu .mega-menu').append(close_button); /*-----------------------------------------------------------------------------------*/ /* OPEN SUB MENU FUNCTION /*-----------------------------------------------------------------------------------*/ $('span.rs-menu-parent').on('click', function(e){ e.preventDefault(); var t = $(this); var menu = t.siblings('ul'); var parent = t.parent('li'); var siblings = parent.siblings('li'); var arrow_target = 'span.rs-menu-parent'; if (menu.hasClass('sub-menu')) { var menu = t.siblings('ul.sub-menu'); } else if(menu.hasClass('mega-menu')) { var menu = t.siblings('ul.mega-menu'); } if (menu.hasClass('visible')) { setTimeout(function() { menu.removeClass('visible'); }, 10); t.html(arrow_down); } else { setTimeout(function() { menu.addClass('visible'); }, 10); t.html(arrow_up); } /*-------------------------------------*/ /* CLOSE MENUS /*-------------------------------------*/ //Close sub menus parent.find('ul.visible').removeClass('visible'); //Close sub menus parents parent.siblings('li').children('ul').removeClass('visible'); //Close sub menus child parents siblings.find('ul.visible').removeClass('visible'); /*-------------------------------------*/ /* INSERT ARROW DOWN /*-------------------------------------*/ //Insert arrow down in sub menus parent.children('ul').find(arrow_target).html(arrow_down); //Insert arrow down in sub menus parents siblings.children(arrow_target).html(arrow_down); //Insert arrow down in sub menus child parents siblings.find(arrow_target).html(arrow_down); }); /*-----------------------------------------------------------------------------------*/ /* CLOSE BUTTON /*-----------------------------------------------------------------------------------*/ $('ul.nav-menu div.sub-menu-close').on('click', function(e){ e.preventDefault(); var a = $(this).parent('ul'); a.removeClass('visible'); a.siblings('span.rs-menu-parent').html(arrow_down); }); /*-----------------------------------------------------------------------------------*/ /* EFFECTS ON MENU TOGGLE /*-----------------------------------------------------------------------------------*/ $('a.rs-menu-toggle').on('click', function(e){ e.preventDefault(); var menu_height = $('.rs-menu ul').height(); if ($(this).hasClass('rs-menu-toggle-open')) { $(this).removeClass('rs-menu-toggle-open').addClass('rs-menu-toggle-close'); $('.rs-menu').animate({height:'0px'},{queue:false, duration:300}).addClass('rs-menu-close'); } else { $(this).removeClass('rs-menu-toggle-close').addClass('rs-menu-toggle-open'); $('.rs-menu').animate({height:menu_height},{queue:false, duration:300}).removeClass('rs-menu-close'); } }); /*-----------------------------------------------------------------------------------*/ /* CLOSE MENUS ON RESIZE /*-----------------------------------------------------------------------------------*/ var window_width = 0; $(window).on('load', function () { window_width = $(window).width(); $('.rs-menu').addClass( "rs-menu-close" ); }); $(window).resize( function(){ if(window_width !== $(window).width()){ $('.visible').removeClass('visible'); $('.rs-menu-toggle').removeClass('rs-menu-toggle-open').addClass( "rs-menu-toggle-close" ); $('.rs-menu').css( "height", "0" ).addClass( "rs-menu-close" ); $('span.rs-menu-parent').html( arrow_down ); window_width = $(window).width(); } }); });
Close