From 07fc4c2464a08b6957745f6275537447d5ee2371 Mon Sep 17 00:00:00 2001 From: Nikhil Sharma <30630904+nik72619c@users.noreply.github.com> Date: Fri, 12 Oct 2018 02:35:02 +0530 Subject: [PATCH] docs(service-worker): updated browser support for Service Worker (#26408) PR Close #26408 --- aio/content/guide/service-worker-intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/service-worker-intro.md b/aio/content/guide/service-worker-intro.md index d29e3e456d..2eba216fb6 100644 --- a/aio/content/guide/service-worker-intro.md +++ b/aio/content/guide/service-worker-intro.md @@ -31,7 +31,7 @@ Installing the Angular service worker is as simple as including an `NgModule`. I ## Prerequisites -Your application must run in a web browser that supports service workers. Currently, the latest versions of Chrome and Firefox are supported. To learn about other browsers that are service worker ready, see the [Can I Use](http://caniuse.com/#feat=serviceworkers) page. +Your application must run in a web browser that supports service workers. Currently, service workers are supported in the latest versions of Chrome, Firefox, Edge, Safari, Opera, UC Browser (Android version) and Samsung Internet. Browsers like IE and Opera Mini do not provide the support. To learn more about other browsers that are service worker ready, see the [Can I Use](https://caniuse.com/#feat=serviceworkers) page and [MDN docs](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API). ## Related resources