2011-07-29 18:48:43 +00:00
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
2011-11-05 16:46:53 +00:00
|
|
|
'use strict';
|
2011-04-22 22:03:10 +00:00
|
|
|
/**
|
|
|
|
fixme: no need for this
|
|
|
|
*/
|
|
|
|
Ox.Toolbar = function(options, self) {
|
2011-06-19 17:48:32 +00:00
|
|
|
self = self || {};
|
|
|
|
var that = Ox.Bar({
|
2011-04-22 22:03:10 +00:00
|
|
|
size: Ox.UI.getBarSize(options.size)
|
|
|
|
}, self);
|
|
|
|
return that;
|
|
|
|
};
|