Twenty Nineteen: Fix a JS coding standard issue found after [55970].
Follow-up to [55970]. See #46474. Built from https://develop.svn.wordpress.org/trunk@55972 git-svn-id: http://core.svn.wordpress.org/trunk@55484 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fd17918a8a
commit
444733ed27
|
@ -274,7 +274,7 @@
|
|||
|
||||
document.addEventListener('focus', function(event) {
|
||||
|
||||
if ( event.target != window.document && event.target.matches( '.main-navigation > div > ul > li a' ) ) {
|
||||
if ( event.target !== window.document && event.target.matches( '.main-navigation > div > ul > li a' ) ) {
|
||||
|
||||
// Remove Focused elements in sibling div.
|
||||
var currentDiv = getCurrentParent( event.target, 'div', '.main-navigation' );
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-55971';
|
||||
$wp_version = '6.3-alpha-55972';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue