Files
ScratchingPost/wwwroot/js/admin.js
T
2026-05-21 08:55:52 +10:00

8 lines
409 B
JavaScript

// === Scratching Post Admin JS ===
document.querySelectorAll('.alert-dismissible').forEach(function (alert) {
setTimeout(function () { var bsAlert = bootstrap.Alert.getOrCreateInstance(alert); bsAlert.close(); }, 5000);
});
document.querySelectorAll('[data-confirm]').forEach(function (el) {
el.addEventListener('click', function (e) { if (!confirm(this.dataset.confirm)) e.preventDefault(); });
});