File: D:/HostingSpaces/SBogers68/ouddorp-duin.nl/wwwroot/js/calcHeights.js
/**
* Created by driesjanssen on 7/4/17.
*/
/*==========================================================================
Home
========================================================================== */
/**
* Calculate block on side of current block
*
* 1. Function calculates the height of cta product block and returns it
* 2. Run function when resizing the window
*
*/
function calcProductCtaHeight (){ /* 1 */
return $('.product-cta').outerHeight();
}
$('.workshop-cta').css('height', calcProductCtaHeight());
$(window).on('resize', function(){ /* 2 */
$('.workshop-cta').css('height', calcProductCtaHeight());
});