Files
wordpress-preseed/wp-content/plugins/jetpack/modules/shortcodes/js/recipes.js
2019-10-24 00:12:05 +02:00

17 lines
387 B
JavaScript

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