Coding Standards: Fix JSHint issues in [47246].

See #44264.

git-svn-id: https://develop.svn.wordpress.org/trunk@47248 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-02-10 21:36:53 +00:00
parent 7a7c3c60d9
commit 0c07311e95

View File

@ -59,7 +59,7 @@ jQuery( document ).ready( function( $ ) {
var $this = $( this ),
$action = $this.parents( '.export-personal-data' ),
$requestRow = $this.parents( 'tr' ),
$progress = $requestRow.find( '.export-progress' );
$progress = $requestRow.find( '.export-progress' ),
requestID = $action.data( 'request-id' ),
nonce = $action.data( 'nonce' ),
exportersCount = $action.data( 'exporters-count' ),
@ -150,7 +150,7 @@ jQuery( document ).ready( function( $ ) {
var $this = $( this ),
$action = $this.parents( '.remove-personal-data' ),
$requestRow = $this.parents( 'tr' ),
$progress = $requestRow.find( '.erasure-progress' );
$progress = $requestRow.find( '.erasure-progress' ),
requestID = $action.data( 'request-id' ),
nonce = $action.data( 'nonce' ),
erasersCount = $action.data( 'erasers-count' ),