Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 13.58.211.135
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
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
/
home /
baltic /
web /
modules /
ctools /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
ajax-responder.js
3.63
KB
-rw-r--r--
auto-submit.js
3.27
KB
-rw-r--r--
collapsible-div.js
7.77
KB
-rw-r--r--
dependent.js
8.4
KB
-rw-r--r--
dropbutton.js
3.14
KB
-rw-r--r--
dropdown.js
2.97
KB
-rw-r--r--
jump-menu.js
1.07
KB
-rw-r--r--
modal.js
24.21
KB
-rw-r--r--
states-show.js
1.14
KB
-rw-r--r--
stylizer.js
6.33
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dropbutton.js
/** * @file * Implement a simple, clickable dropbutton menu. * * See dropbutton.theme.inc for primary documentation. * * The javascript relies on four classes: * - The dropbutton must be fully contained in a div with the class * ctools-dropbutton. It must also contain the class ctools-no-js * which will be immediately removed by the javascript; this allows for * graceful degradation. * - The trigger that opens the dropbutton must be an a tag wit hthe class * ctools-dropbutton-link. The href should just be '#' as this will never * be allowed to complete. * - The part of the dropbutton that will appear when the link is clicked must * be a div with class ctools-dropbutton-container. * - Finally, ctools-dropbutton-hover will be placed on any link that is being * hovered over, so that the browser can restyle the links. * * This tool isn't meant to replace click-tips or anything, it is specifically * meant to work well presenting menus. */ (function ($) { Drupal.behaviors.CToolsDropbutton = { attach: function() { // Process buttons. All dropbuttons are buttons. $('.ctools-button') .once('ctools-button') .removeClass('ctools-no-js'); // Process dropbuttons. Not all buttons are dropbuttons. $('.ctools-dropbutton').once('ctools-dropbutton', function() { var $dropbutton = $(this); var $button = $('.ctools-content', $dropbutton); var $secondaryActions = $('li', $button).not(':first'); var $twisty = $(".ctools-link", $dropbutton); var open = false; var hovering = false; var timerID = 0; var toggle = function(close) { // if it's open or we're told to close it, close it. if (open || close) { // If we're just toggling it, close it immediately. if (!close) { open = false; $secondaryActions.slideUp(100); $dropbutton.removeClass('open'); } else { // If we were told to close it, wait half a second to make // sure that's what the user wanted. // Clear any previous timer we were using. if (timerID) { clearTimeout(timerID); } timerID = setTimeout(function() { if (!hovering) { open = false; $secondaryActions.slideUp(100); $dropbutton.removeClass('open'); }}, 500); } } else { // open it. open = true; $secondaryActions.animate({height: "show", opacity: "show"}, 100); $dropbutton.addClass('open'); } } // Hide the secondary actions initially. $secondaryActions.hide(); $twisty.click(function() { toggle(); return false; }); $dropbutton.hover( function() { hovering = true; }, // hover in function() { // hover out hovering = false; toggle(true); return false; } ); }); } } })(jQuery);
Close