Compare commits
No commits in common. "b5d0a9f13664e7d96d18be27aa7acda3fa20a5f9" and "d4b89137dbd8ae7e46a145e51fc84db3a4036820" have entirely different histories.
b5d0a9f136
...
d4b89137db
1 changed files with 13 additions and 34 deletions
|
@ -2,40 +2,19 @@
|
|||
|
||||
oml.ui.annotationPanel = function() {
|
||||
|
||||
var $bar = Ox.Bar({size: 16});
|
||||
|
||||
var $button = Ox.Button({
|
||||
disabled: true,
|
||||
style: 'symbol',
|
||||
title: 'add',
|
||||
type: 'image'
|
||||
}).appendTo($bar);
|
||||
|
||||
var $menuButton = Ox.MenuButton({
|
||||
items: [
|
||||
{id: 'sortAnnotations', title: 'Sort Annotations', disabled: true}
|
||||
],
|
||||
style: 'square',
|
||||
title: 'set',
|
||||
type: 'image',
|
||||
width: 16
|
||||
}).css({
|
||||
float: 'right'
|
||||
}).appendTo($bar);
|
||||
|
||||
var ui = oml.user.ui;
|
||||
var that = Ox.SplitPanel({
|
||||
elements: [
|
||||
{
|
||||
element: $bar,
|
||||
size: 16
|
||||
},
|
||||
{
|
||||
element: oml.$ui.annotationFolder = oml.ui.annotationFolder()
|
||||
}
|
||||
],
|
||||
orientation: 'vertical'
|
||||
});
|
||||
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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue