diff --git a/wp-content/themes/twentytwenty/assets/js/index.js b/wp-content/themes/twentytwenty/assets/js/index.js index 5b2a9b2278..84875ef42e 100644 --- a/wp-content/themes/twentytwenty/assets/js/index.js +++ b/wp-content/themes/twentytwenty/assets/js/index.js @@ -676,6 +676,9 @@ twentytwentyDomReady( function() { /* Toggle an attribute ----------------------- */ function twentytwentyToggleAttribute( element, attribute, trueVal, falseVal ) { + if ( element.classList.contains( 'close-search-toggle' ) ) { + return; + } if ( trueVal === undefined ) { trueVal = true; } diff --git a/wp-content/themes/twentytwenty/template-parts/modal-search.php b/wp-content/themes/twentytwenty/template-parts/modal-search.php index f0b51bdbbc..56e0b57366 100644 --- a/wp-content/themes/twentytwenty/template-parts/modal-search.php +++ b/wp-content/themes/twentytwenty/template-parts/modal-search.php @@ -22,7 +22,7 @@ ); ?> - diff --git a/wp-includes/version.php b/wp-includes/version.php index c3b4da0f53..44530b1487 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-50032'; +$wp_version = '5.7-alpha-50033'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.