2013-03-04 08:44:48 +00:00
|
|
|
pandora.ui.textPanel = function() {
|
|
|
|
var that = Ox.SplitPanel({
|
|
|
|
elements: [
|
2014-01-22 13:56:04 +00:00
|
|
|
{
|
|
|
|
element: pandora.$ui.selectAnnotationType = pandora.ui.selectAnnotationType()
|
|
|
|
},
|
2013-03-04 08:44:48 +00:00
|
|
|
{
|
|
|
|
element: pandora.$ui.textArea = pandora.ui.textArea()
|
|
|
|
},
|
|
|
|
{
|
|
|
|
element: pandora.$ui.textToolBar = pandora.ui.textToolBar(),
|
|
|
|
size: 20
|
|
|
|
}
|
|
|
|
],
|
|
|
|
orientation: 'vertical'
|
|
|
|
});
|
|
|
|
return that;
|
|
|
|
}
|
|
|
|
|