diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-17 19:35:35 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-17 19:35:35 +0100 |
commit | a5f665f504dc544b4a03f2ee81da6c44555415e5 (patch) | |
tree | 4367bbbd041bf99fb54ba9e3f43a52a26944d801 /pyload/webui/themes/Flat/js/static/tinytab.js | |
parent | Merge branch 'pr/n1006_mariusbaumann' into 0.4.10 (diff) | |
download | pyload-a5f665f504dc544b4a03f2ee81da6c44555415e5.tar.xz |
Update webui
Diffstat (limited to 'pyload/webui/themes/Flat/js/static/tinytab.js')
-rw-r--r-- | pyload/webui/themes/Flat/js/static/tinytab.js | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/pyload/webui/themes/Flat/js/static/tinytab.js b/pyload/webui/themes/Flat/js/static/tinytab.js deleted file mode 100644 index de50279fc..000000000 --- a/pyload/webui/themes/Flat/js/static/tinytab.js +++ /dev/null @@ -1,43 +0,0 @@ -/* ---- -description: TinyTab - Tiny and simple tab handler for Mootools. - -license: MIT-style - -authors: -- Danillo César de O. Melo - -requires: -- core/1.2.4: '*' - -provides: TinyTab - -... -*/ -(function($) { - this.TinyTab = new Class({ - Implements: Events, - initialize: function(tabs, contents, opt) { - this.tabs = tabs; - this.contents = contents; - if(!opt) opt = {}; - this.css = opt.selectedClass || 'selected'; - this.select(this.tabs[0]); - tabs.each(function(el){ - el.addEvent('click',function(e){ - this.select(el); - e.stop(); - }.bind(this)); - }.bind(this)); - }, - - select: function(el) { - this.tabs.removeClass(this.css); - el.addClass(this.css); - this.contents.setStyle('display','none'); - var content = this.contents[this.tabs.indexOf(el)]; - content.setStyle('display','block'); - this.fireEvent('change',[content,el]); - } - }); -})(document.id);
\ No newline at end of file |