mirror of
https://github.com/System-End/hackatime.git
synced 2026-04-19 23:32:53 +00:00
11 lines
322 B
JavaScript
11 lines
322 B
JavaScript
import { Controller } from "@hotwired/stimulus";
|
|
|
|
export default class extends Controller {
|
|
confirm(event) {
|
|
event.preventDefault();
|
|
const modal = document.getElementById("account-deletion-confirm-modal");
|
|
if (modal) {
|
|
modal.dispatchEvent(new CustomEvent("modal:open", { bubbles: true }));
|
|
}
|
|
}
|
|
}
|