Make WordPress Core

Changeset 42989 for trunk/src


Ignore:
Timestamp:
04/19/2018 12:22:11 AM (6 years ago)
Author:
jorbin
Message:

Privacy: Fix JSHint errors

Introduced in [42986].

See #43440.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/js/xfn.js

    r42986 r42989  
    9191        }
    9292
    93         function on_erasure_failure( textStatus, error ) {
     93        function on_erasure_failure() {
    9494            set_action_state( $action, 'remove_personal_data_failed' );
    9595            appendResultsAfterRow( $requestRow, 'notice-error', strings.anErrorOccurred, [] );
     
    9898        function do_next_erasure( eraserIndex, pageIndex ) {
    9999            $.ajax( {
    100                 url: ajaxurl,
     100                url: window.ajaxurl,
    101101                data: {
    102102                    action: 'wp-privacy-erase-personal-data',
     
    104104                    id: requestID,
    105105                    page: pageIndex,
    106                     security: nonce,
     106                    security: nonce
    107107                },
    108108                method: 'post'
    109109            } ).done( function( response ) {
    110110                if ( ! response.success ) {
    111                     on_erasure_failure( 'error', response.data );
     111                    on_erasure_failure();
    112112                    return;
    113113                }
     
    131131                    }
    132132                }
    133             } ).fail( function( jqxhr, textStatus, error ) {
    134                 on_erasure_failure( textStatus, error );
     133            } ).fail( function() {
     134                on_erasure_failure();
    135135            } );
    136136        }
     
    140140
    141141        do_next_erasure( 1, 1 );
    142     } )
     142    } );
    143143} );
Note: See TracChangeset for help on using the changeset viewer.