update annotation layout

This commit is contained in:
rlx 2019-01-24 12:52:40 +05:30
commit 1206f0c41e
4 changed files with 50 additions and 19 deletions

View file

@ -3,9 +3,19 @@
oml.ui.annotationPanel = function() {
var ui = oml.user.ui,
that = Ox.Element().css({
overflowY: 'auto',
});
that = Ox.SplitPanel({
elements: [
{
element: Ox.Bar({size: 16}),
size: 16
},
{
element: oml.$ui.annotationFolder = oml.ui.annotationFolder()
}
],
orientation: 'vertical'
})
return that;
};