// vim: et:ts=4:sw=4:sts=4:ft=javascript 'use strict'; /*@ 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) { self = self || {}; var that = Ox.Element({}, self) .addClass('OxPanel'); return that; };