2019-01-24 07:22:40 +00:00
|
|
|
oml.ui.annotationFolder = function() {
|
|
|
|
|
|
|
|
var ui = oml.user.ui,
|
2019-02-01 11:29:23 +00:00
|
|
|
that = Ox.Element().addClass('OxAnnotationFolder').css({
|
2019-01-24 07:22:40 +00:00
|
|
|
overflowY: 'auto',
|
2019-01-24 13:04:06 +00:00
|
|
|
overflowX: 'hidden',
|
2019-01-24 07:22:40 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return that;
|
|
|
|
|
2019-01-24 13:04:06 +00:00
|
|
|
};
|