oxjs/source/js/Ox.UI/Bar/Ox.Toolbar.js
2011-04-25 11:12:02 +02:00

11 lines
249 B
JavaScript

// vim: et:ts=4:sw=4:sts=4:ft=js
/**
fixme: no need for this
*/
Ox.Toolbar = function(options, self) {
var self = self || {},
that = new Ox.Bar({
size: Ox.UI.getBarSize(options.size)
}, self);
return that;
};