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,32 +2,11 @@
|
||||||
|
|
||||||
oml.ui.annotationPanel = function() {
|
oml.ui.annotationPanel = function() {
|
||||||
|
|
||||||
var $bar = Ox.Bar({size: 16});
|
var ui = oml.user.ui,
|
||||||
|
that = Ox.SplitPanel({
|
||||||
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: [
|
elements: [
|
||||||
{
|
{
|
||||||
element: $bar,
|
element: Ox.Bar({size: 16}),
|
||||||
size: 16
|
size: 16
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -35,7 +14,7 @@ oml.ui.annotationPanel = function() {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
orientation: 'vertical'
|
orientation: 'vertical'
|
||||||
});
|
})
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue