website/hub/services/static/js/servala-addons.js

9 lines
290 B
JavaScript
Raw Normal View History

2025-05-07 08:36:02 +02:00
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;
}