From ee6998127afb44e35ba13c405da3bd78b34f9a11 Mon Sep 17 00:00:00 2001 From: LeviDing Date: Mon, 6 Apr 2020 12:18:47 +0800 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 d3b336ce..1ce04b7c 100644 --- a/3-frames-and-windows/01-popup-windows/article.md +++ b/3-frames-and-windows/01-popup-windows/article.md @@ -154,7 +154,7 @@ Windows may freely access content of each other only if they come from the same Otherwise, e.g. if the main window is from `site.com`, and the popup from `gmail.com`, that's impossible for user safety reasons. For the details, see chapter . ``` -## Accessing window from popup +## Accessing window from popup A popup may access the "opener" window as well using `window.opener` reference. It is `null` for all windows except popups.