2011-11-05 16:46:53 +00:00
|
|
|
'use strict';
|
2011-05-16 08:24:46 +00:00
|
|
|
/*@
|
2012-05-31 10:32:54 +00:00
|
|
|
Ox.Bar <f> Bar
|
|
|
|
([options[, self]]) -> <o:Ox.Element> Bar object
|
2011-05-16 08:24:46 +00:00
|
|
|
options <o> Options object
|
2012-06-21 21:15:54 +00:00
|
|
|
orientation <s|'horizontal'> Orientation ('horizontal' or 'vertical')
|
|
|
|
size <n|s|'medium'> can be 'small', 'medium', 'large' or number
|
2011-05-16 08:24:46 +00:00
|
|
|
self <o> Shared private variable
|
|
|
|
@*/
|
2011-04-22 22:03:10 +00:00
|
|
|
Ox.Bar = function(options, self) {
|
2011-06-19 17:48:32 +00:00
|
|
|
self = self || {};
|
|
|
|
var that = Ox.Element({}, self)
|
2011-04-22 22:03:10 +00:00
|
|
|
.defaults({
|
|
|
|
orientation: 'horizontal',
|
2012-01-02 08:25:34 +00:00
|
|
|
size: 'medium'
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
|
|
|
.options(options || {})
|
|
|
|
.addClass('OxBar Ox' + Ox.toTitleCase(self.options.orientation)),
|
|
|
|
dimensions = Ox.UI.DIMENSIONS[self.options.orientation];
|
2012-01-02 08:25:34 +00:00
|
|
|
self.options.size = Ox.isString(self.options.size)
|
|
|
|
? Ox.UI.getBarSize(self.options.size) : self.options.size;
|
2011-04-22 22:03:10 +00:00
|
|
|
that.css(dimensions[0], '100%')
|
|
|
|
.css(dimensions[1], self.options.size + 'px');
|
|
|
|
return that;
|
|
|
|
};
|