openmedialibrary/static/js/annotationPanel.js
2019-01-24 12:52:40 +05:30

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;
};