Coding Standards: Fix WPCS and JSHint issues in [46872].

See #47069.
Built from https://develop.svn.wordpress.org/trunk@46874


git-svn-id: http://core.svn.wordpress.org/trunk@46674 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-12-10 01:34:01 +00:00
parent d617011afd
commit ee58f3f3d3
3 changed files with 4 additions and 3 deletions

View File

@ -10,6 +10,7 @@
*
* @return {void}
*/
/* global hoverintent */
( function( document, window, navigator ) {
document.addEventListener( 'DOMContentLoaded', function() {
var adminBar = document.getElementById( 'wpadminbar' ),
@ -65,7 +66,7 @@
addHoverClass.bind( null, topMenuItems[i] ),
removeHoverClass.bind( null, topMenuItems[i] )
).options( {
timeout: 180,
timeout: 180
} );
/**

View File

@ -1516,7 +1516,7 @@ function wp_default_scripts( &$scripts ) {
$scripts->add( 'hoverIntent', "/wp-includes/js/hoverIntent$suffix.js", array( 'jquery' ), '1.8.1', 1 );
// JS-only version of hoverintent (no dependencies).
$scripts->add( 'hoverintent-js', "/wp-includes/js/hoverintent-js.min.js", array(), '2.2.1', 1 );
$scripts->add( 'hoverintent-js', '/wp-includes/js/hoverintent-js.min.js', array(), '2.2.1', 1 );
$scripts->add( 'customize-base', "/wp-includes/js/customize-base$suffix.js", array( 'jquery', 'json2', 'underscore' ), false, 1 );
$scripts->add( 'customize-loader', "/wp-includes/js/customize-loader$suffix.js", array( 'customize-base' ), false, 1 );

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.4-alpha-46872';
$wp_version = '5.4-alpha-46874';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.