From 1190721cf7752d34dd5d8d6afe5c8567a310fb4a Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 26 Aug 2020 09:31:09 +0300 Subject: [PATCH] Update article.md --- 3-frames-and-windows/01-popup-windows/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3-frames-and-windows/01-popup-windows/article.md b/3-frames-and-windows/01-popup-windows/article.md index 1ce04b7c..1f54433f 100644 --- a/3-frames-and-windows/01-popup-windows/article.md +++ b/3-frames-and-windows/01-popup-windows/article.md @@ -15,7 +15,7 @@ Also, popups are tricky on mobile devices, that don't show multiple windows simu Still, there are tasks where popups are still used, e.g. for OAuth authorization (login with Google/Facebook/...), because: -1. A popup is a separate window with its own independent JavaScript environment. So opening a popup with a third-party non-trusted site is safe. +1. A popup is a separate window with its own independent JavaScript environment. So opening a popup from a third-party non-trusted site is safe. 2. It's very easy to open a popup. 3. A popup can navigate (change URL) and send messages to the opener window.