recipes.js 362 B

1234567891011
  1. /* global jetpack_recipes_vars */
  2. ( function( $ ) {
  3. $( window ).load( function() {
  4. $( '.jetpack-recipe-print a' ).click( function( event ) {
  5. event.preventDefault();
  6. // Print the DIV.
  7. $( this ).closest( '.jetpack-recipe' ).printThis( { pageTitle: jetpack_recipes_vars.pageTitle, loadCSS: jetpack_recipes_vars.loadCSS } );
  8. } );
  9. } );
  10. } )( jQuery );