1
0
Fork 0
forked from 0x2620/oxjs

fixing a resize bug in Ox.List

This commit is contained in:
rolux 2011-05-19 14:37:19 +02:00
commit f311e05412
5 changed files with 23 additions and 5 deletions

View file

@ -31,7 +31,7 @@ Ox.AnnotationPanel = function(options, self) {
that.$element = new Ox.CollapsePanel({
collapsed: false,
extras: [
extras: self.options.editable ? [
new Ox.Button({
id: 'add',
style: 'symbol',
@ -43,7 +43,7 @@ Ox.AnnotationPanel = function(options, self) {
that.triggerEvent('add', {value: ''});
}
})
],
] : [],
size: 16,
title: self.options.title
})