From 0b67a91c1c58ffead79d155f8c80d2147c6a505d Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Tue, 8 Oct 2019 19:52:03 +0000 Subject: [PATCH] Bundled Themes: Fix JSHint error in [46445] Props ianbelanger. See #48110. Built from https://develop.svn.wordpress.org/trunk@46447 git-svn-id: http://core.svn.wordpress.org/trunk@46245 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwenty/assets/js/index.js | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentytwenty/assets/js/index.js b/wp-content/themes/twentytwenty/assets/js/index.js index 17290b38fa..1ed91c53f5 100644 --- a/wp-content/themes/twentytwenty/assets/js/index.js +++ b/wp-content/themes/twentytwenty/assets/js/index.js @@ -190,7 +190,7 @@ twentytwenty.coverModals = { htmlStyle.setProperty( styleKey, styles[ styleKey ] ); } ); - _win.twentytwenty.scrolled = parseInt( styles.top ); + _win.twentytwenty.scrolled = parseInt( styles.top, 10 ); if ( adminBar ) { _doc.body.style.setProperty( 'padding-top', paddingTop ); diff --git a/wp-includes/version.php b/wp-includes/version.php index a835592203..7bc0eaf6ec 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-beta2-46446'; +$wp_version = '5.3-beta2-46447'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.