1
0
Fork 0
forked from 0x2620/oxjs

misc. minor changes and documentation updates

This commit is contained in:
rolux 2012-04-08 20:22:27 +02:00
commit abfea74565
8 changed files with 102 additions and 30 deletions

View file

@ -103,11 +103,6 @@ Ox.TreeList = function(options, self) {
'symbol' + (data.expanded ? 'Down' : 'Right')
)
})
.css({
width: '10px',
height: '10px',
padding: '3px'
})
)
.appendTo($item);
}
@ -251,9 +246,11 @@ Ox.TreeList = function(options, self) {
self.setOption = function(key, value) {
if (key == 'data') {
// ...
} else if (key == 'selected') {
self.$list.options({selected: value});
} else if (key == 'width') {
// ...
}
};