summaryrefslogtreecommitdiff
blob: 3c987acc38df7fb16ff3c84bc10c700c86818ba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* 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 );