Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Devrim Gunyel
core
Commits
99910708
Commit
99910708
authored
Jun 05, 2019
by
Piotr Gawron
Browse files
list of available annotators is sorted alphabetically
parent
b4ce4d37
Changes
2
Show whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
99910708
...
...
@@ -4,6 +4,7 @@ minerva (12.3.1~beta.1) unstable; urgency=low
*
Bug
fix
:
plugin
tab
header
wasn
't properly resized after adding plugins
that introduced second line for tab selection (#758)
* Bug fix: invisible layer shouldn'
t
be
shown
in
the
on
th
map
(#
813
)
*
Bug
fix
:
list
of
availbale
annotators
is
sorted
alphabetically
(#
815
)
minerva
(
13.1.0
~
beta
.0
)
unstable
;
urgency
=
low
*
Feature
:
annotators
are
more
flexible
-
you
can
define
set
of
input
and
...
...
frontend-js/src/main/js/gui/admin/ChooseAnnotatorsDialog.js
View file @
99910708
...
...
@@ -197,6 +197,15 @@ ChooseAnnotatorsDialog.prototype.setElementType = function (elementType) {
}
entries
.
push
(
entry
);
}
entries
.
sort
(
function
(
entryA
,
entryB
)
{
if
(
entryA
.
name
<
entryB
.
name
)
{
return
-
1
;
}
if
(
entryA
.
name
>
entryB
.
name
)
{
return
1
;
}
return
0
;
});
var
checkboxList
=
new
MultiCheckboxList
(
selectElement
,
{
entries
:
entries
,
listTitle
:
"
Available annotators
"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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