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