From 1570f89693eb70cd3bc04e1e687bbc2480d2c624 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 15 Jul 2019 16:45:58 +0000 Subject: [PATCH] Comments: Fix typo in comment reply observer options. Props maguiar. Fixes #47706. See #46260. git-svn-id: https://develop.svn.wordpress.org/trunk@45641 602fd350-edb4-49c9-b593-d223f7449a82 --- src/js/_enqueues/lib/comment-reply.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/_enqueues/lib/comment-reply.js b/src/js/_enqueues/lib/comment-reply.js index 75fc183e42..a82fc03c87 100644 --- a/src/js/_enqueues/lib/comment-reply.js +++ b/src/js/_enqueues/lib/comment-reply.js @@ -206,7 +206,7 @@ window.addComment = ( function( window ) { var observerOptions = { childList: true, - subTree: true + subtree: true }; observer = new MutationObserver( handleChanges );