12 lines
178 B
JavaScript
12 lines
178 B
JavaScript
|
'use strict';
|
||
|
|
||
|
oml.ui.annotationPanel = function() {
|
||
|
|
||
|
var ui = oml.user.ui,
|
||
|
that = Ox.Element().css({
|
||
|
overflowY: 'auto',
|
||
|
});
|
||
|
|
||
|
return that;
|
||
|
};
|