1
0
Fork 0
forked from 0x2620/oxjs

misc. minor changes and documentation updates

This commit is contained in:
rolux 2012-04-08 20:22:27 +02:00
commit abfea74565
8 changed files with 102 additions and 30 deletions

View file

@ -1,5 +1,20 @@
// vim: et:ts=4:sw=4:sts=4:ft=javascript
/*@
Ox.TabPanel <f> Tabbed panel
(options) -> <o> Panel
(options, self) -> <o> Panel
options <o> Options
content <o|f> Content per tab
Either <code>({id1: $element1, id2: $element2}}</code> or
<code>function(id) { return $element; })</code>
size <n|24> Height of the tab bar
tabs [o] Tabs
id <s> Tab id
title <s> Tab title
self <o> Shared private variable
@*/
'use strict';
Ox.TabPanel = function(options, self) {