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