oxjs/source/Ox.UI/js/Panel/Ox.Panel.js
2012-05-21 12:38:18 +02:00

17 lines
402 B
JavaScript

'use strict';
/*@
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) {
self = self || {};
var that = Ox.Element({}, self)
.addClass('OxPanel');
return that;
};