Coding Standards: Fix WPCS issue in [51682].

This fixes a "Misleading line break before `'||'`; readers may interpret this as an expression boundary" error.

See #54030.

git-svn-id: https://develop.svn.wordpress.org/trunk@51683 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2021-08-28 01:33:06 +00:00
parent 780be4296a
commit a632c8592b

View File

@ -8462,8 +8462,8 @@
}
// Abort if we're inside of a block editor instance.
if ( event.target.closest( '.block-editor-writing-flow' ) !== null
|| event.target.closest( '.block-editor-block-list__block-popover' ) !== null
if ( event.target.closest( '.block-editor-writing-flow' ) !== null ||
event.target.closest( '.block-editor-block-list__block-popover' ) !== null
) {
return;
}