oxjs/source/js/Ox.Panel.js
2011-04-23 00:03:10 +02:00

8 lines
165 B
JavaScript

/**
*/
Ox.Panel = function(options, self) {
var self = self || {},
that = new Ox.Element({}, self)
.addClass('OxPanel');
return that;
};