openmedialibrary/static/js/annotationPanel.js

22 lines
452 B
JavaScript
Raw Normal View History

2019-01-23 15:14:59 +00:00
'use strict';
oml.ui.annotationPanel = function() {
var ui = oml.user.ui,
2019-01-24 07:22:40 +00:00
that = Ox.SplitPanel({
elements: [
{
element: Ox.Bar({size: 16}),
size: 16
},
{
element: oml.$ui.annotationFolder = oml.ui.annotationFolder()
}
],
orientation: 'vertical'
})
2019-01-23 15:14:59 +00:00
return that;
2019-01-24 07:22:40 +00:00
2019-01-23 15:14:59 +00:00
};