summaryrefslogtreecommitdiff
blob: 37215b4a0f1370781852b036b04484eb3462e53c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* global jetpack_recipes_vars */
( function( $ ) {
	$( window ).load( function() {
		$( '.jetpack-recipe-print a' ).click( function( event ) {
			event.preventDefault();

			// Print the DIV.
			$( this )
				.closest( '.jetpack-recipe' )
				.printThis( {
					pageTitle: jetpack_recipes_vars.pageTitle,
					loadCSS: jetpack_recipes_vars.loadCSS,
				} );
		} );
	} );
} )( jQuery );