Skip to content

Commit

Permalink
Show evidence before citation in pop-up
Browse files Browse the repository at this point in the history
  • Loading branch information
kimrutherford committed Sep 27, 2024
1 parent 0930474 commit e4411ea
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -255,15 +255,15 @@
content += '<div>' + firstPos + '..' + lastPos + '</div>\n';
}
}
if (feature.evidence) {
content += '<div class="evidence">Evidence: ' + feature.evidence + '</div>\n';
}
if (feature.author_and_year) {
content += '<div class="author-and-year">' + feature.author_and_year + '</div>\n';
}
if (feature.assigned_by) {
content += '<div>Imported from: ' + feature.assigned_by + '</div>\n';
}
if (feature.evidence) {
content += '<div class="evidence">Evidence: ' + feature.evidence + '</div>\n';
}

return content;
};
Expand Down

0 comments on commit e4411ea

Please sign in to comment.