File "recipes.js"

Full Path: /home/warrior1/public_html/plugins/jetpack/modules/shortcodes/js/recipes.js
File size: 377 bytes
MIME-type: text/plain
Charset: utf-8

/* 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 );