forked from 0x2620/oxjs
cleanup docs, fix children/find calls
This commit is contained in:
parent
a98902f165
commit
b9e80c9d75
88 changed files with 157 additions and 253 deletions
|
|
@ -5,8 +5,8 @@ Ox.Bar <f:Ox.Element> Bar
|
|||
(options) -> <o> Bar object
|
||||
(options, self) -> <o> Bar object
|
||||
options <o> Options object
|
||||
orientation <s|horizontal>
|
||||
size <s|medium> can be small, medium, large or number
|
||||
orientation <s|'horizontal'>
|
||||
size <s|'medium'> can be small, medium, large or number
|
||||
self <o> Shared private variable
|
||||
@*/
|
||||
Ox.Bar = function(options, self) {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
/*@
|
||||
Ox.Progressbar <f> Progress Bar
|
||||
Ox.Progressbar <f:Ox.Element> Progress Bar
|
||||
() -> <o> Progress Bar
|
||||
(options) -> <o> Progress Bar
|
||||
(options, self) -> <o> Progress Bar
|
||||
|
|
@ -241,4 +241,4 @@ Ox.Progressbar = function(options, self) {
|
|||
|
||||
return that;
|
||||
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
'use strict';
|
||||
/**
|
||||
fixme: no need for this
|
||||
*/
|
||||
Ox.Toolbar = function(options, self) {
|
||||
self = self || {};
|
||||
var that = Ox.Bar({
|
||||
size: Ox.UI.getBarSize(options.size)
|
||||
}, self);
|
||||
return that;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue