oxjs/source/Ox.UI/js/Bar/Bar.js

26 lines
937 B
JavaScript
Raw Normal View History

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