⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
softaculous
/
enduser
/
themes
/
default
/
js
/
View File Name :
tabber.js
////////////////////////////////////////////////////////////// // Tabber.js // By Alons // Please Read the Terms of use at http://www.softaculous.com // (c)Softaculous Inc. // You cannot remove the copyrights. ////////////////////////////////////////////////////////////// function tabber(){ this.tabs = new Array();//The tabs this.tabwindows = new Array();//The tab windows this.tabclass = 'tab';//A tab button which is not yet tabbed this.tabbedclass = 'sai_tabbed';//The tabbed button class this.inittab = false; this.tab = function(id, init){ for(x in this.tabs){ try{ if(this.tabs[x] == id){ $_(this.tabs[x]).className = this.tabbedclass; if(init != 1){ setopacity($_(this.tabwindows[x]), 0); smoothopaque(this.tabwindows[x], 1, 100, 4); } $_(this.tabwindows[x]).style.display = 'block'; }else{ $_(this.tabs[x]).className = this.tabclass; $_(this.tabwindows[x]).style.display = 'none'; } }catch(ee){ } } // If you want to override anything ! this.override(id); }; //Will set the first tab to Tabbed this.init = function(){ if(this.inittab){ this.tab(this.inittab, 1); }else{ this.tab(this.tabs[0, 1]); } }; this.override = function(){ }; };