Interactivity API: Use string instead of object in `data-wp-interactive` attribute.
The server directive processing, integrated in [57563], supports a simplified format for passing the namespace to `data-wp-interactive`. Props cbravobernal, gziolo. Fixes #60542. See #60356. Built from https://develop.svn.wordpress.org/trunk@57646 git-svn-id: http://core.svn.wordpress.org/trunk@57147 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
112f61146d
commit
61f8789d9f
|
@ -799,14 +799,14 @@ CSS;
|
||||||
echo <<<HTML
|
echo <<<HTML
|
||||||
<div
|
<div
|
||||||
class="wp-interactivity-router-loading-bar"
|
class="wp-interactivity-router-loading-bar"
|
||||||
data-wp-interactive='{"namespace":"core/router"}'
|
data-wp-interactive="core/router"
|
||||||
data-wp-class--start-animation="state.navigation.hasStarted"
|
data-wp-class--start-animation="state.navigation.hasStarted"
|
||||||
data-wp-class--finish-animation="state.navigation.hasFinished"
|
data-wp-class--finish-animation="state.navigation.hasFinished"
|
||||||
></div>
|
></div>
|
||||||
<div
|
<div
|
||||||
class="screen-reader-text"
|
class="screen-reader-text"
|
||||||
aria-live="polite"
|
aria-live="polite"
|
||||||
data-wp-interactive='{"namespace":"core/router"}'
|
data-wp-interactive="core/router"
|
||||||
data-wp-text="state.navigation.message"
|
data-wp-text="state.navigation.message"
|
||||||
></div>
|
></div>
|
||||||
HTML;
|
HTML;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.5-beta1-57645';
|
$wp_version = '6.5-beta1-57646';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue