1
0
Fork 0
forked from 0x2620/oxjs

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

@ -31,7 +31,7 @@ Ox.TreeList = function(options, self) {
itemWidth: self.options.width,
max: self.options.max,
min: self.options.min,
unique: 'id',
unique: 'id'
}, $.extend({}, self))
.addClass('OxTextList OxTreeList')
.css({
@ -192,6 +192,8 @@ Ox.TreeList = function(options, self) {
self.setOption = function(key, value) {
if (key == 'data') {
} else if (key == 'width') {
}
};