fix OxText class in CSS

This commit is contained in:
rolux 2011-05-12 05:29:35 +02:00
commit b0e5e906f5
7 changed files with 93 additions and 82 deletions

View file

@ -9,7 +9,7 @@ Ox.Container = function(options, self) {
var that = new Ox.Element({}, self)
.options(options || {})
.addClass('OxContainer');
that.$content = new Ox.Element({})
that.$content = new Ox.Element({}, self) // fixme: passing self twice??
.options(options || {})
.addClass('OxContent')
.appendTo(that);