Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
media /
fef /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
Ajax.min.js
3.19
KB
-rwxr-xr-x
2023-07-13 17:52
Darkmode.min.js
499
B
-rwxr-xr-x
2023-07-13 17:52
Dropdown.min.js
934
B
-rwxr-xr-x
2023-07-13 17:52
Loader.min.js
919
B
-rwxr-xr-x
2023-07-13 17:52
Menu.min.js
593
B
-rwxr-xr-x
2023-07-13 17:52
Modal.min.js
5.59
KB
-rwxr-xr-x
2023-07-13 17:52
System.min.js
12.97
KB
-rwxr-xr-x
2023-07-13 17:52
Tabs.min.js
1.03
KB
-rwxr-xr-x
2023-07-13 17:52
Tooltip.min.js
3.49
KB
-rwxr-xr-x
2023-07-13 17:52
darkmode.js
1.04
KB
-rwxr-xr-x
2020-07-16 17:34
darkmode.min.js
501
B
-rwxr-xr-x
2020-07-16 17:34
darkmode.min.map
1.1
KB
-rwxr-xr-x
2020-07-16 17:34
dependencies.json
192
B
-rwxr-xr-x
2023-07-13 17:52
dropdown.js
4.57
KB
-rwxr-xr-x
2020-07-16 17:34
dropdown.min.js
1.66
KB
-rwxr-xr-x
2021-02-05 16:00
dropdown.min.map
3.31
KB
-rwxr-xr-x
2020-07-16 17:34
loader.min.js
919
B
-rwxr-xr-x
2021-02-05 16:00
menu.js
1.11
KB
-rwxr-xr-x
2020-07-16 17:34
menu.min.js
435
B
-rwxr-xr-x
2020-07-16 17:34
menu.min.map
986
B
-rwxr-xr-x
2020-07-16 17:34
tabs.js
3.4
KB
-rwxr-xr-x
2020-07-16 17:34
tabs.min.js
1.22
KB
-rwxr-xr-x
2021-02-05 16:00
tabs.min.map
2.59
KB
-rwxr-xr-x
2020-07-16 17:34
Save
Rename
/* * Akeeba Frontend Framework (FEF) * * @package fef * @copyright (c) 2017-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later * * Created by Crystal Dionysopoulou for Akeeba Ltd, https://www.akeeba.com */ if (typeof akeeba === 'undefined') { akeeba = {}; } if (typeof akeeba.fef === 'undefined') { akeeba.fef = {}; } if (typeof akeeba.fef.forEach === 'undefined') { akeeba.fef.forEach = function (array, callback, scope) { for (var i = 0; i < array.length; i++) { callback.call(scope, i, array[i]); } }; } /** * Activates the tab interface for specific HTML elements * * @param {String} [selector] CSS selector for the tab-set wrapper(s). Default: 'div.akeeba-tabs' */ akeeba.fef.tabs = function(selector) { // Use the default selector, if necessary if ((typeof selector === 'undefined') || (selector === '')) { selector = 'div.akeeba-tabs'; } var wrappersList = document.querySelectorAll(selector); if (wrappersList.length === 0) { return; } // Loop for every tab set matching the selector akeeba.fef.forEach(wrappersList, function(i, elWrapper) { // Sort the child elements of the selector to tabs (label) and panels (section) var tabList = elWrapper.querySelectorAll('label'); var tabId = elWrapper.id; var tabPreselected = ''; if (tabList.length === 0) { return; } if (tabId != '') { tabPreselected = window.sessionStorage.getItem('akeeba.tabs.' + tabId); } akeeba.fef.forEach(tabList, function(k, elTab) { if (elTab.parentElement !== elWrapper) { return; } elTab.addEventListener('click', function (event) { var selectedId = this.getAttribute('for'); akeeba.fef.forEach(tabList, function(q, element) { if (element.parentElement !== elWrapper) { return; } var currentClasses = element.className.split(' '); var newClass = ''; for (var property in currentClasses) { if (!currentClasses.hasOwnProperty(property) || (currentClasses[property] === 'active')) { continue; } newClass += currentClasses[property] + ' '; } if (newClass.trim) { newClass = newClass.trim(); } // If the 'for' attribute matches add back the "active" class if (element.getAttribute('for') === selectedId) { window.sessionStorage.setItem('akeeba.tabs.' + tabId, selectedId); newClass += ' active'; } element.className = newClass; }); }); }); if (tabPreselected != '') { akeeba.fef.forEach(tabList, function(k, elTab) { if (elTab.parentElement !== elWrapper) { return; } if (elTab.getAttribute('for') == tabPreselected) { var clickEvent = new MouseEvent('click'); elTab.dispatchEvent(clickEvent); } }); } }); };