34830-vm/assets/js/main.js
2025-10-09 13:06:04 +00:00

15 lines
461 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
// Initialize Bootstrap components
var toastEl = document.getElementById('sosToast');
var toast = new bootstrap.Toast(toastEl);
// SOS Button functionality
var sosButton = document.getElementById('sosButton');
if (sosButton) {
sosButton.addEventListener('click', function () {
// Show the toast notification
toast.show();
});
}
});