21 lines
452 B
JavaScript
21 lines
452 B
JavaScript
'use strict';
|
|
|
|
oml.ui.annotationPanel = function() {
|
|
|
|
var ui = oml.user.ui,
|
|
that = Ox.SplitPanel({
|
|
elements: [
|
|
{
|
|
element: Ox.Bar({size: 16}),
|
|
size: 16
|
|
},
|
|
{
|
|
element: oml.$ui.annotationFolder = oml.ui.annotationFolder()
|
|
}
|
|
],
|
|
orientation: 'vertical'
|
|
})
|
|
|
|
return that;
|
|
|
|
};
|