説明なし

recipes.js 377B

123456789101112131415
  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( {
  8. pageTitle: jetpack_recipes_vars.pageTitle,
  9. loadCSS: jetpack_recipes_vars.loadCSS,
  10. } );
  11. } );
  12. } );
  13. } )( jQuery );