1
0
Fork 0
forked from 0x2620/oxjs

rename Ox.UI source files, remove Ox. prefix

This commit is contained in:
j 2012-05-28 19:44:12 +00:00
commit 91e1065aab
101 changed files with 0 additions and 0 deletions

View file

@ -1,36 +0,0 @@
'use strict';
/*@
Ox.Tabbar <f:Ox.Bar> Tabbar
() -> <o> Tabbar object
(options) -> <o> Tabbar object
(options, self) -> <o> Tabbar object
options <o> Options object
selected <n|0> selected item
tabs <a|[]> tabs
self <o> Shared private variable
@*/
Ox.Tabbar = function(options, self) {
self = self || {};
var that = Ox.Bar({
size: 20
}, self)
.defaults({
selected: 0,
tabs: []
})
.options(options || {})
.addClass('OxTabbar');
Ox.ButtonGroup({
buttons: self.options.tabs,
group: true,
selectable: true,
selected: self.options.selected,
size: 'medium',
style: 'tab'
}).appendTo(that);
return that;
};