summaryrefslogtreecommitdiff
blob: 5043cf101c8363fdfbc1b11682fca677c7d2831a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* global jQuery, JSON */

( function( $ ) {
	$( document ).ready( function() {
		$( '.jetpack-search-debug-bar .json-toggle-wrap .toggle' ).click( function() {
			var t = $( this ),
				wrap = t.closest( '.json-toggle-wrap' ),
				pre = wrap.find( 'pre' ),
				content = pre.text(),
				isPretty = wrap.hasClass( 'pretty' );

			if ( ! isPretty ) {
				pre.text( JSON.stringify( JSON.parse( content ), null, 2 ) );
			} else {
				content.replace( '\t', '' ).replace( '\n', '' ).replace( ' ', '' );
				pre.text( JSON.stringify( JSON.parse( content ) ) );
			}

			wrap.toggleClass( 'pretty' );
		} );
	} );
} )( jQuery );