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_slider // By Alons // Please Read the Terms of use at http://www.softaculous.com // (c)Softaculous Inc. ////////////////////////////////////////////////////////////// function slideitout(elid, endheight, inc, time){ startheight = $_(elid).offsetHeight + inc; if(startheight < endheight){ diff = endheight - startheight; if(diff > inc){ $_(elid).style.height = startheight+"px"; _mytimer = setTimeout('slideitout(\''+elid+'\', '+endheight+', '+inc+', '+time+');', time); }else{ $_(elid).style.height = endheight+"px"; } } }; function pullitin(elid, dec, time){ height = $_(elid).offsetHeight - dec; if(height > dec){ $_(elid).style.height = height+"px"; _mytimer = setTimeout('pullitin(\''+elid+'\', '+dec+', '+time+');', time); }else{ $_(elid).style.height = "1px"; //A bug in IE 5.5 } }; var _mytimer; function slider(){ this.speed = 20; this.bydefault = 1; // Collapsed this.collapsed = new Array(); // Collapsed by Default this.expanded = new Array(); // Expanded by Default this.img_collapsed = imgurl+'collapsed.gif'; this.img_expanded = imgurl+'expanded.gif'; this.elements = new Array(); this.slide = function(id){ var height = $_(id).offsetHeight; // People can PLAY too much, hence clear the timer :) Take that idiots ! if(typeof(_mytimer) != 'undefined'){ AEFclear(_mytimer); } if(height > 1){ this.collapse(id); }else{ this.expand(id); } }; this.expand = function(id){ slideitout(id, $_('t'+id).offsetHeight, this.speed, 1); $_('i'+id).src = this.img_expanded; setcookie(id, '2', 365); }; this.collapse = function(id){ pullitin(id, this.speed, 1); $_('i'+id).src = this.img_collapsed; setcookie(id, '1', 365); }; //Init it this.init = function(){ var elements = this.elements; for(id in elements){ var cookie = getcookie(elements[id]); if(cookie.length > 0){ if(cookie == 2){ this.initexp(elements[id]); }else if(cookie == 1){ this.initcoll(elements[id]); } continue; } var defau = 0; for(xx in this.expanded){ if(this.expanded[xx] == elements[id]){ this.initexp(elements[id]); defau = 1; break; } } if(defau == 1){ continue; } var defau = 0; for(xx in this.collapsed){ if(this.collapsed[xx] == elements[id]){ this.initcoll(elements[id]); defau = 1; break; } } if(defau == 1){ continue; } if(this.bydefault == 2){ this.initexp(elements[id]); }else if(this.bydefault == 1){ this.initcoll(elements[id]); } } }; this.initexp = function(id){ $_(id).style.height = $_('t'+id).offsetHeight+"px"; $_('i'+id).src = this.img_expanded; }; this.initcoll = function(id){ $_(id).style.height = "1px"; $_('i'+id).src = this.img_collapsed; }; this.expandAll = function(){ var elements = this.elements; for(key in elements){ id = elements[key]; this.expand(id); } }; this.collapseAll = function(){ var elements = this.elements; for(key in elements){ id = elements[key]; this.collapse(id); } }; };