2019-01-24 12:52:40 +05:30
|
|
|
oml.ui.annotationFolder = function() {
|
|
|
|
|
|
|
|
var ui = oml.user.ui,
|
2019-02-01 16:59:23 +05:30
|
|
|
that = Ox.Element().addClass('OxAnnotationFolder').css({
|
2019-01-24 12:52:40 +05:30
|
|
|
overflowY: 'auto',
|
2019-01-24 18:34:06 +05:30
|
|
|
overflowX: 'hidden',
|
2019-01-24 12:52:40 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
return that;
|
|
|
|
|
2019-01-24 18:34:06 +05:30
|
|
|
};
|