/* eslint no-var: "off" */
$( document ).ready( function () {
$( '.jetpack-search-debug-bar .json-toggle-wrap .toggle' ).click( function () {
wrap = t.closest( '.json-toggle-wrap' ),
pre = wrap.find( 'pre' ),
isPretty = wrap.hasClass( 'pretty' );
pre.text( JSON.stringify( JSON.parse( content ), null, 2 ) );
content.replace( '\t', '' ).replace( '\n', '' ).replace( ' ', '' );
pre.text( JSON.stringify( JSON.parse( content ) ) );
wrap.toggleClass( 'pretty' );