Update Tester.HTML

This commit is contained in:
Dangrainage 2024-04-25 00:13:43 +02:00 committed by GitHub
parent 1c69f17558
commit d45e7e21a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,9 +44,9 @@
let link = document.createElement('a');
link.textContent = `${result.title} (${result.year})`;
link.href = result.link ? result.link : '#'; // If link is not available, set href to '#'
link.onclick = function(event) {
if (!result.link) {
event.preventDefault(); // Prevent default link behavior if link is not available
link.onclick = function() {
if (result.link) {
window.location.href = result.link;
}
};
listItem.appendChild(link);