Mathematics
// Request notification permission on page load if ('Notification' in window && Notification.permission === 'default') { Notification.requestPermission(); } function sendBrowserNotification(title, body, icon) { if ('Notification' in window && Notification.permission === 'granted' && document.hidden) { var notification = new Notification(title, { body: body, icon: icon || 'https://app.pandai.org/images/logo.png', badge: 'https://app.pandai.org/images/logo.png', tag: 'ai-marking-complete', requireInteraction: false }); // Auto close after 5 seconds setTimeout(function() { notification.close(); }, 5000); // Click to focus window notification.onclick = function() { window.focus(); notification.close(); }; } }