website/hub/services/static/js/servala-addons.js
Tobias Brunner 1911a1211b
All checks were successful
Build and Deploy / build (push) Successful in 36s
Build and Deploy / deploy (push) Successful in 4s
make whole card clickable
2025-05-07 08:36:02 +02:00

9 lines
No EOL
290 B
JavaScript

function cardClicked(event, url) {
// Don't navigate if the click was on a button or link
if (event.target.closest('.clickable-button') || event.target.closest('.clickable-link')) {
return;
}
// Navigate to the provider detail page
window.location.href = url;
}