From 0c07311e953aabbbfe2323dc109e13ea5e56c811 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 10 Feb 2020 21:36:53 +0000 Subject: [PATCH] Coding Standards: Fix JSHint issues in [47246]. See #44264. git-svn-id: https://develop.svn.wordpress.org/trunk@47248 602fd350-edb4-49c9-b593-d223f7449a82 --- src/js/_enqueues/admin/privacy-tools.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/_enqueues/admin/privacy-tools.js b/src/js/_enqueues/admin/privacy-tools.js index f31e2d6d55..5d5a2067a4 100644 --- a/src/js/_enqueues/admin/privacy-tools.js +++ b/src/js/_enqueues/admin/privacy-tools.js @@ -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' ),