From 66a2af3b35214546fdc538cbce38ff2ab7bd83bb Mon Sep 17 00:00:00 2001 From: Tom Brewe Date: Fri, 20 Dec 2019 10:46:16 +0100 Subject: [PATCH] remove incorrect info about synchronous postMessage --- 3-frames-and-windows/03-cross-window-communication/article.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/3-frames-and-windows/03-cross-window-communication/article.md b/3-frames-and-windows/03-cross-window-communication/article.md index 0a89521b..53f5f55f 100644 --- a/3-frames-and-windows/03-cross-window-communication/article.md +++ b/3-frames-and-windows/03-cross-window-communication/article.md @@ -335,10 +335,6 @@ The full example: [codetabs src="postmessage" height=120] -```smart header="There's no delay" -There's totally no delay between `postMessage` and the `message` event. The event triggers synchronously, faster than `setTimeout(...,0)`. -``` - ## Summary To call methods and access the content of another window, we should first have a reference to it.