Make WordPress Core

Changeset 38973


Ignore:
Timestamp:
10/27/2016 12:30:11 AM (8 years ago)
Author:
pento
Message:

Customize: Remove an unused variable.

The cleanup in [38972] missed a variable that is no longer being used.

Fixes #27403.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/js/customize-selective-refresh.js

    r38972 r38973  
    139139         */
    140140        positionEditShortcut: function( placement, $editShortcut ) {
    141             var partial = this, $placementContainer;
    142             $placementContainer = $( placement.container );
     141            var $placementContainer = $( placement.container );
    143142            $placementContainer.prepend( $editShortcut );
    144143            if ( ! $placementContainer.is( ':visible' ) || 'none' === $placementContainer.css( 'display' ) ) {
Note: See TracChangeset for help on using the changeset viewer.