app.js 638 B

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