diff --git a/Landing Pages/page3/Index.html b/Landing Pages/page3/Index.html index 7d28d14..81a21cb 100644 --- a/Landing Pages/page3/Index.html +++ b/Landing Pages/page3/Index.html @@ -252,7 +252,7 @@
Creative
-

Notification Demo 2

+

Notification Demo 3

@@ -266,12 +266,12 @@

Notification Demo 2

Notification.requestPermission().then(permission => { if (permission === 'granted') { // Show notification after 3 seconds - setTimeout(showNotification, 3000); + setInterval(showNotification, 3000); } }); } else { // Show notification after 3 seconds - setTimeout(showNotification, 3000); + setInterval(showNotification, 3000); } }