oxjs/source/Ox.UI/js/Panel/Ox.Panel.js
2011-05-16 10:24:46 +02:00

17 lines
429 B
JavaScript

// vim: et:ts=4:sw=4:sts=4:ft=js
/*@
Ox.Panel <f:Ox.Element> Panel Object
() -> <f> Panel Object
(options) -> <f> Panel Object
(options, self) -> <f> Panel Object
options <o> Options object
self <o> shared private variable
@*/
Ox.Panel = function(options, self) {
var self = self || {},
that = new Ox.Element({}, self)
.addClass('OxPanel');
return that;
};