// === 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(); }); });