oxjs/source/Ox.UI/js/Core/Ox.Container.js

26 lines
840 B
JavaScript
Raw Normal View History

2011-04-23 16:45:50 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=js
2011-04-22 22:03:10 +00:00
// fixme: wouldn't it be better to let the elements be,
// rather then $element, $content, and potentially others,
// 0, 1, 2, etc, so that append would append 0, and appendTo
// would append (length - 1)?
2011-05-16 08:24:46 +00:00
/*@
Ox.Container <f> Container
() -> <o> Container object
(options) -> <o> Container object
(options, self) -> <o> Container object
options <o> Options object
self <o> Shared private variable
@*/
2011-04-22 22:03:10 +00:00
Ox.Container = function(options, self) {
// fixme: to be deprecated
2011-04-29 12:40:51 +00:00
var that = new Ox.Element({}, self)
2011-04-22 22:03:10 +00:00
.options(options || {})
.addClass('OxContainer');
2011-05-12 03:29:35 +00:00
that.$content = new Ox.Element({}, self) // fixme: passing self twice??
2011-04-22 22:03:10 +00:00
.options(options || {})
.addClass('OxContent')
.appendTo(that);
2011-04-22 22:03:10 +00:00
return that;
};