This commit is contained in:
zandercymatics 2025-02-20 08:57:09 -07:00
parent 3bfb75fa3b
commit eb02869df8
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 1 additions and 2 deletions

View file

@ -7,7 +7,6 @@ export function initButtonLinks() {
button.addEventListener('click', function() {
// Equivalent to button.getAttribute("data-href")
const href = this.dataset.href;
console.log(`in loop: ${href}`)
if (href) {
window.location.href = href;
}

View file

@ -32,7 +32,7 @@ def extract_a_text(value):
text_only = re.sub(text_pattern, "", content)
# Clean up any extra whitespace
return text_only.strip()
return ""