From 9891d67e318c94398b4efdd654291b59b8ec4bf5 Mon Sep 17 00:00:00 2001 From: Jack Reed Date: Mon, 26 Oct 2020 10:39:46 -0600 Subject: [PATCH] docs(zone.js): Update docs property to disable IntersectionObserver (#39429) Update the property in this documentation to reflect the correct syntax for disabling IntersectionObserver PR Close #39429 --- packages/zone.js/MODULE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/zone.js/MODULE.md b/packages/zone.js/MODULE.md index 7af365f72d..658e7c94af 100644 --- a/packages/zone.js/MODULE.md +++ b/packages/zone.js/MODULE.md @@ -37,7 +37,7 @@ Below is the full list of currently supported modules. |blocking|alert/prompt/confirm will be patched as Zone.run|__Zone_disable_blocking = true| |EventTarget|target.addEventListener will be patched as Zone aware EventTask|__Zone_disable_EventTarget = true| |MutationObserver|MutationObserver will be patched as Zone aware operation|__Zone_disable_MutationObserver = true| -|IntersectionObserver|Intersection will be patched as Zone aware operation|__Zone_disable_Intersection = true| +|IntersectionObserver|Intersection will be patched as Zone aware operation|__Zone_disable_IntersectionObserver = true| |FileReader|FileReader will be patched as Zone aware operation|__Zone_disable_FileReader = true| |canvas|HTMLCanvasElement.toBlob will be patched as Zone aware operation|__Zone_disable_canvas = true| |IE BrowserTools check|in IE, browser tool will not use zone patched eventListener|__Zone_disable_IE_check = true|