Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/dokan/assets/installer/js/ drwxr-xr-x | |
| Viewing file: Select action/file-type: (function ($) {
"use strict";
/*----------------------------
Comment reply box scrollbar Active
------------------------------*/
$(".comment-reply-box").niceScroll({cursorcolor:"#5b7798"});
/*----------------------------
Hamburger Active
------------------------------*/
$('.hamburger').on('click',function(){
$('.sidebar').toggleClass('active');
$('.main-content-area').toggleClass('active');
});
/*----------------------------
Data Append
------------------------------*/
$('#theme_file').on('change',function(){
var files = [];
for (var i = 0; i < $(this)[0].files.length; i++) {
files.push($(this)[0].files[i].name);
}
$(this).next('.custom-file-label').html(files.join(', '));
})
/*----------------------------
Jquery Live Search
------------------------------*/
$('#data_search').keyup(function(){
search_table($(this).val());
});
function search_table(value){
$('.table tbody tr').each(function(){
var found = 'false';
$(this).each(function(){
if($(this).text().toLowerCase().indexOf(value.toLowerCase()) >= 0)
{
found = true;
}
});
if(found == true)
{
$(this).show();
}
else
{
$(this).hide();
}
});
}
})(jQuery);
/*----------------------------
Sweet Aleart
------------------------------*/
function Sweet(icon,title,time=3000){
const Toast = Swal.mixin({
toast: true,
position: 'top-end',
showConfirmButton: false,
timer: time,
timerProgressBar: true,
onOpen: (toast) => {
toast.addEventListener('mouseenter', Swal.stopTimer)
toast.addEventListener('mouseleave', Swal.resumeTimer)
}
})
Toast.fire({
icon: icon,
title: title,
})
}
function SweetAudio(icon,title,time=3000,audio=""){
const Toast = Swal.mixin({
toast: true,
position: 'top-end',
showConfirmButton: false,
timer: time,
timerProgressBar: true,
onOpen: (toast) => {
toast.addEventListener('mouseenter', Swal.stopTimer)
toast.addEventListener('mouseleave', Swal.resumeTimer)
var aud = new Audio(audio)
aud.play();
}
})
Toast.fire({
icon: icon,
title: title,
})
} |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0059 ]-- |