15 lines
326 B
JavaScript
15 lines
326 B
JavaScript
'use strict';
|
|
|
|
/*@
|
|
Ox.Panel <f:Ox.Element> 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;
|
|
};
|