Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
softaculous /
enduser /
themes /
default /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
bpopup.0.9.4.min.js
5.06
KB
-rwxr-xr-x
2026-04-22 09:09
classes_suggest.js
6.39
KB
-rwxr-xr-x
2026-04-22 09:09
combined.js
138.05
KB
-rwxr-xr-x
2026-04-22 09:09
datatables.min.js
84.85
KB
-rwxr-xr-x
2026-04-22 09:09
daterangepicker.js
62.32
KB
-rwxr-xr-x
2026-04-22 09:09
dock.js
3.09
KB
-rwxr-xr-x
2026-04-22 09:09
domdrag.js
3.77
KB
-rwxr-xr-x
2026-04-22 09:09
dropzone.min.js
47.02
KB
-rwxr-xr-x
2026-04-22 09:09
excanvas.min.js
17.48
KB
-rwxr-xr-x
2026-04-22 09:09
g.pie-min.js
3.32
KB
-rwxr-xr-x
2026-04-22 09:09
g.raphael.js
11.83
KB
-rwxr-xr-x
2026-04-22 09:09
graph.js
5.42
KB
-rwxr-xr-x
2026-04-22 09:09
index.html
94
B
-rwxr-xr-x
2026-04-22 09:09
jquery-ui-custom.js
60.68
KB
-rwxr-xr-x
2026-04-22 09:09
jquery.flot.min.js
36.67
KB
-rwxr-xr-x
2026-04-22 09:09
jquery.flot.pie.min.js
8.65
KB
-rwxr-xr-x
2026-04-22 09:09
jquery.js
84.89
KB
-rwxr-xr-x
2026-04-22 09:09
jquery.scrollTo.js
3.5
KB
-rwxr-xr-x
2026-04-22 09:09
jquery.ui.widget.min.js
6.6
KB
-rwxr-xr-x
2026-04-22 09:09
menu.js
1.65
KB
-rwxr-xr-x
2026-04-22 09:09
moment.min.js
50.43
KB
-rwxr-xr-x
2026-04-22 09:09
motiongallery.js
5.46
KB
-rwxr-xr-x
2026-04-22 09:09
osuggest.js
3.68
KB
-rwxr-xr-x
2026-04-22 09:09
pie.js
915
B
-rwxr-xr-x
2026-04-22 09:09
popper.min.js
20.73
KB
-rwxr-xr-x
2026-04-22 09:09
popup.js
4.6
KB
-rwxr-xr-x
2026-04-22 09:09
raphael-min.js
58.88
KB
-rwxr-xr-x
2026-04-22 09:09
reorder.js
2.19
KB
-rwxr-xr-x
2026-04-22 09:09
script_select.js
29.2
KB
-rwxr-xr-x
2026-04-22 09:09
slider.js
3.1
KB
-rwxr-xr-x
2026-04-22 09:09
smoothscroll.js
1.02
KB
-rwxr-xr-x
2026-04-22 09:09
spectrum.js
66.54
KB
-rwxr-xr-x
2026-04-22 09:09
suggest.js
5.85
KB
-rwxr-xr-x
2026-04-22 09:09
tabber.js
1.23
KB
-rwxr-xr-x
2026-04-22 09:09
trail.js
4.39
KB
-rwxr-xr-x
2026-04-22 09:09
ui.progressbar.js
1.55
KB
-rwxr-xr-x
2026-04-22 09:09
universal.js
22.63
KB
-rwxr-xr-x
2026-04-22 09:09
Save
Rename
////////////////////////////////////////////////////////////// // js_reorder // By Alons // Please Read the Terms of use at http://www.softaculous.com // (c)Softaculous Inc. ////////////////////////////////////////////////////////////// function init_reoder(){ var init_pos = findelpos($_(reorder_holder)); var tot_height = 0; var width = $_(reorder_holder).offsetWidth; var top = init_pos[1]; //Find the prerequisites for(x in reo_r){ tot_height = tot_height + $_(reo_ha+reo_r[x]).offsetHeight + 10; $_(reo_ha+reo_r[x]).style.width = width+'px'; } $_(reorder_holder).style.height = tot_height+'px';//Make it long tot_height = (tot_height + init_pos[1]); //Initialize the Drag for(x in reo_r){ Drag.init($_(reo_ho+reo_r[x]), $_(reo_ha+reo_r[x]), init_pos[0], init_pos[0], (init_pos[1]-10), tot_height); $_(reo_ha+reo_r[x]).onDragEnd = function(){ reorder(); }; $_(reo_ha+reo_r[x]).style.left = init_pos[0]+'px'; $_(reo_ha+reo_r[x]).style.top = top+'px'; showel(reo_ha+reo_r[x]); top = top + $_(reo_ha+reo_r[x]).offsetHeight + 10; } }; //This will reorder function reorder(){ var reo_arr = new Array(); var reo_arr_pos = new Array(); for(x in reo_r){ var pos = findelpos($_(reo_ha+reo_r[x])); //A position may be used if x smiley is left over y sm at the same position if(is_pos_there(reo_arr_pos, pos[1])){ pos[1] = pos[1] + 1; } reo_arr[x] = pos[1]+'|'+reo_r[x]; reo_arr_pos[x] = pos[1]; } reo_arr_pos = reo_arr_pos.sort(sortnumber); for(x in reo_arr_pos){ reo_r[x] = find_reokey(reo_arr, reo_arr_pos[x]); } //Re-position Vars var init_pos = findelpos($_(reorder_holder)); var top = init_pos[1]; //Re-position for(x in reo_r){ $_(reo_ha+reo_r[x]).style.top = top+'px'; top = top + $_(reo_ha+reo_r[x]).offsetHeight + 10; $_(reo_hid+reo_r[x]).value = (parseInt(x) + 1); } }; function find_reokey(arr, val){ var x; for(x in arr){ var r = arr[x].split('|'); if(r[0] == val){ return r[1]; } } }; //Tells if the position is already there - Like in_array function is_pos_there(arr, val){ var x; for(x in arr){ if(arr[x] == val){ return true; } } return false; }; //Just a sort function function sortnumber(a, b){ return a - b; };