11 lines
363 B
JavaScript
11 lines
363 B
JavaScript
document.addEventListener('DOMContentLoaded', () => {
|
|
// Basic interaction for toasts
|
|
const toasts = document.querySelectorAll('.toast');
|
|
toasts.forEach(toastEl => {
|
|
const toast = new bootstrap.Toast(toastEl, { delay: 5000 });
|
|
toast.show();
|
|
});
|
|
|
|
// Lazy load or pre-fetch images if needed
|
|
console.log('ApkNusa ready.');
|
|
}); |