Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
45603bcc
Commit
45603bcc
authored
Aug 27, 2019
by
Piotr Gawron
Browse files
small info about annotator details is available in select anntoators dialog
parent
2c87e4f4
Pipeline
#13198
canceled with stage
in 59 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
45603bcc
...
...
@@ -2,6 +2,8 @@ minerva (14.0.0~beta.0) unstable; urgency=low
*
Small
improvement
:
sorting
by
columns
that
doesn
't make sense in admin
panel is disabled (#895)
* Small improvement: version of minerva is visible in map browser panel
* Small improvement: small info about annotator details is available in
select anntoators dialog (#923)
* Small improvement: CellDesigner layers are always visualized as pathways
(#813)
* Small improvement: setting "Modify project| checkbox automatically select
...
...
frontend-js/src/main/js/gui/admin/ChooseAnnotatorsDialog.js
View file @
45603bcc
...
...
@@ -55,7 +55,10 @@ ChooseAnnotatorsDialog.prototype.createGui = function () {
var
annotatorsDiv
=
Functions
.
createElement
({
type
:
"
div
"
,
style
:
"
display:table-cell;width:100%;height:100%;position:relative
"
,
content
:
"
<div style='height:100%;width:100%;overflow-y:auto;position:absolute;left:0;top:0'><div name='annotatorListBox'></div><div class='minerva-annotators-params'></div></div>
"
,
content
:
"
<div style='height:100%;width:100%;overflow-y:auto;position:absolute;left:0;top:0'>
"
+
"
<div name='annotatorListBox'></div>
"
+
"
<div class='minerva-annotators-params'></div>
"
+
"
</div>
"
,
xss
:
false
});
content
.
appendChild
(
annotatorsDiv
);
...
...
@@ -159,6 +162,11 @@ ChooseAnnotatorsDialog.prototype.setElementType = function (elementType) {
}
}
});
element
.
appendChild
(
Functions
.
createElement
({
type
:
"
div
"
,
style
:
"
position:absolute; right:20px; top:20px; width: 180px; border: 1px solid #efefef
"
,
content
:
"
Please click on selected annotator to display details at the bottom
"
}));
element
.
appendChild
(
copyFromButton
);
var
copyFromSelect
=
Functions
.
createElement
({
type
:
"
select
"
,
style
:
"
margin:5px
"
});
element
.
appendChild
(
copyFromSelect
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment