'use strict'; /*@ Ox.Panel 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; };