From cd3fb86f9cb230a23dfba31dc09072bf4333fc7f Mon Sep 17 00:00:00 2001 From: Peter Kampjes <67612358+peachesontour@users.noreply.github.com> Date: Tue, 1 Sep 2020 11:30:49 -0300 Subject: [PATCH] Update 2-ui/99-ui-misc/01-mutation-observer/article.md Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com> --- 2-ui/99-ui-misc/01-mutation-observer/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/99-ui-misc/01-mutation-observer/article.md b/2-ui/99-ui-misc/01-mutation-observer/article.md index a7d19469..bc471bae 100644 --- a/2-ui/99-ui-misc/01-mutation-observer/article.md +++ b/2-ui/99-ui-misc/01-mutation-observer/article.md @@ -259,7 +259,7 @@ The mere fact that a DOM node is observed doesn't prevent the garbage collection ## Summary -`MutationObserver` can react to changes in DOM: attributes, added/removed elements, text content. +`MutationObserver` can react to changes in DOM - attributes, text content and adding/removing elements. We can use it to track changes introduced by other parts of our code, as well as to integrate with third-party scripts.