mcServerWebsite/assets/controllers/clickable-card_controller.js
Ploush 303fc7bcb5 ajout trop de chose
rappel pour moi : a ne plus reproduire
2026-04-09 14:58:12 +02:00

11 lines
232 B
JavaScript

import { Controller } from '@hotwired/stimulus';
export default class extends Controller {
navigate(e) {
window.location = this.element.dataset.href;
}
stopPropagation(e) {
e.stopPropagation();
}
}