diff --git a/scholia/app/templates/check-crossref.html b/scholia/app/templates/check-crossref.html index 1b819f23b..69214fa84 100755 --- a/scholia/app/templates/check-crossref.html +++ b/scholia/app/templates/check-crossref.html @@ -4,7 +4,7 @@

Check Crossref

-

Enter a topic or author to search for papers in Crossref and check for their presence in Wikidata.

+

Enter a topic to search for papers in Crossref and check for their presence in Wikidata.

@@ -119,7 +119,7 @@

Advanced

const test_query_button = document.getElementById("test-query") function update_query_string() { - // Changing the form updates the query string in the advanced section which is + // Changing the form updates the query string in the advanced section which is // the query string which is ultimately used to check crossref // User validation not required as API calls are performed locally const params = {} @@ -180,8 +180,8 @@

Advanced

function get_dois_from_crossref() { // cribbed from q_curation.html. Maybe eventually worth refactoring let query_string = "select=DOI&" + document.getElementById("query_string").value - // on q_curation.html we need to URIencode the query string but here it breaks - // the ability to select number of rows? + // on q_curation.html we need to URIencode the query string but here it breaks + // the ability to select number of rows? const url = `https://api.crossref.org/works/?${query_string}`; const error_message = "The API failed which could be due to a problem with your connection or with the upstream server. If the issue persists submit a bug report on GitHub"