Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1266 Fixing import of Crossref records without authors #1267

Open
wants to merge 1 commit into
base: v4.8.1
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions public/layouts/opus4/js/getDoi.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ document.addEventListener("DOMContentLoaded", function () {
const abortButton = document.querySelector("input[name='abort']");


// Event Listener für das Klicken auf alle Formularfelder außer dem DOI-Feld (und dem Import-Button)
// Event Listener für das Klicken auf ein Formularfeld außer dem DOI-Feld (sowie Import-Button und Abbruch)
formFields.forEach(function (field) {
if (field.id !== "IdentifierDoi" && field !== importButton && field !== abortButton) {
field.addEventListener("focus", function (event) {
Expand Down Expand Up @@ -280,7 +280,7 @@ function expandAuthor(author)
document.getElementById("Enrichmentopus_doi_flag").value = "true"; // Hier wird das Ende der Reloads erreicht! (alle Felder sind vorhanden)
}
} else {
colorPink("PersonAuthorLastName_1");
document.getElementById("Enrichmentopus_doi_flag").value = "true"; // Sonst den Import ohne Autor abschließen
}
}

Expand Down
Loading