From 831dae429625557e6ef80fb05f562bc73e9f2b34 Mon Sep 17 00:00:00 2001 From: "Marius L. J" Date: Fri, 4 Feb 2022 10:50:39 +0000 Subject: [PATCH] External libraries: Update version string for hoverIntent. Updating the version string will help invalidate caches, ensuring the new version of the library is loaded where applicable. Follow-up to [52429]. Props david.binda. Fixes #54904. git-svn-id: https://develop.svn.wordpress.org/trunk@52673 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/script-loader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php index c265dd32ce..bc52a5f907 100644 --- a/src/wp-includes/script-loader.php +++ b/src/wp-includes/script-loader.php @@ -1142,7 +1142,7 @@ function wp_default_scripts( $scripts ) { $scripts->add( 'media-upload', "/wp-admin/js/media-upload$suffix.js", array( 'thickbox', 'shortcode' ), false, 1 ); - $scripts->add( 'hoverIntent', "/wp-includes/js/hoverIntent$suffix.js", array( 'jquery' ), '1.10.1', 1 ); + $scripts->add( 'hoverIntent', "/wp-includes/js/hoverIntent$suffix.js", array( 'jquery' ), '1.10.2', 1 ); // JS-only version of hoverintent (no dependencies). $scripts->add( 'hoverintent-js', '/wp-includes/js/hoverintent-js.min.js', array(), '2.2.1', 1 );