| 12345678910111213141516 |
- /* ── dashboard app JS ──────────────────────────────────────────────── */
- document.addEventListener('DOMContentLoaded', () => {
- // Confirm delete buttons
- document.querySelectorAll('[data-confirm]').forEach(el => {
- el.addEventListener('click', (e) => {
- if (!confirm(el.dataset.confirm || 'Are you sure?')) {
- e.preventDefault();
- }
- });
- });
- // Auto-focus first input on forms
- const firstInput = document.querySelector('.form-group input:not([type=hidden])');
- if (firstInput) firstInput.focus();
- });
|