Make WordPress Core

Changeset 46875


Ignore:
Timestamp:
12/10/2019 01:36:45 AM (3 years ago)
Author:
SergeyBiryukov
Message:

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

Merges [46874] to the 5.3 branch.
See #47069.

Location:
branches/5.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/5.3

  • branches/5.3/src/js/_enqueues/lib/admin-bar.js

    r46873 r46875  
    1111 * @return {void}
    1212 */
     13/* global hoverintent */
    1314( function( document, window, navigator ) {
    1415    document.addEventListener( 'DOMContentLoaded', function() {
     
    6667                removeHoverClass.bind( null, topMenuItems[i] )
    6768            ).options( {
    68                 timeout: 180,
     69                timeout: 180
    6970            } );
    7071
  • branches/5.3/src/wp-includes/script-loader.php

    r46873 r46875  
    15171517
    15181518    // JS-only version of hoverintent (no dependencies).
    1519     $scripts->add( 'hoverintent-js', "/wp-includes/js/hoverintent-js.min.js", array(), '2.2.1', 1 );
     1519    $scripts->add( 'hoverintent-js', '/wp-includes/js/hoverintent-js.min.js', array(), '2.2.1', 1 );
    15201520
    15211521    $scripts->add( 'customize-base', "/wp-includes/js/customize-base$suffix.js", array( 'jquery', 'json2', 'underscore' ), false, 1 );
Note: See TracChangeset for help on using the changeset viewer.