mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
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:
parent
780be4296a
commit
a632c8592b
4
src/js/_enqueues/wp/customize/controls.js
vendored
4
src/js/_enqueues/wp/customize/controls.js
vendored
@ -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;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user