Skip to content
Snippets Groups Projects
Commit 0e10b311 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch '373-source-of-annotation' into 'master'

Resolve "source of annotation"

Closes #373

See merge request piotr.gawron/minerva!280
parents 7d3676dd 50d9a505
No related branches found
No related tags found
1 merge request!280Resolve "source of annotation"
Pipeline #
...@@ -180,9 +180,9 @@ function createGroupContainer(inline, annotatorClass, annotatorsClassMapping, gr ...@@ -180,9 +180,9 @@ function createGroupContainer(inline, annotatorClass, annotatorsClassMapping, gr
if (groupAnnotations) { if (groupAnnotations) {
var annotatorName = automaticallyAnnotated ? annotatorsClassMapping[annotatorClass].getName() : "Annotated by curator"; var annotatorName = automaticallyAnnotated ? annotatorsClassMapping[annotatorClass].getName() : "Annotated by curator";
if (inline) { if (inline) {
descContainer.innerHTML = annotatorName + ': '; descContainer.innerHTML = 'Source: ' + annotatorName + ': ';
} else { } else {
descContainer.innerHTML = annotatorName; descContainer.innerHTML = 'Source: ' + annotatorName;
if (automaticallyAnnotated) { if (automaticallyAnnotated) {
var annotatorDescription = annotatorsClassMapping[annotatorClass].getDescription(); var annotatorDescription = annotatorsClassMapping[annotatorClass].getDescription();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment