c0fcb683 by Jeff Balicki

stuff

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent d260207a
......@@ -6865,6 +6865,26 @@
jQuery('#contact_popup').modal('show'); //this is the bootstrap modal popup id
}
}, false);
$(window).resize(function () {
var $sameHeightDivs = $('.link-block.image-text .text');
var maxHeight = 0;
$sameHeightDivs.each(function () {
maxHeight = Math.max(maxHeight, $(this).outerHeight());
});
$sameHeightDivs.css({
height: maxHeight + 'px'
});
});
$(document).ready(function () {
var $sameHeightDivs = $('.link-block.image-text .text');
var maxHeight = 0;
$sameHeightDivs.each(function () {
maxHeight = Math.max(maxHeight, $(this).outerHeight());
});
$sameHeightDivs.css({
height: maxHeight + 'px'
});
});
});
exports.Alert = alert;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -21,5 +21,25 @@ jQuery( document ).ready(function($) {
}, false );
})
$(window).resize(function(){
var $sameHeightDivs = $('.link-block.image-text .text');
var maxHeight = 0;
$sameHeightDivs.each(function() {
maxHeight = Math.max(maxHeight, $(this).outerHeight());
});
$sameHeightDivs.css({ height: maxHeight + 'px' });
});
$(document).ready(function () {
var $sameHeightDivs = $('.link-block.image-text .text');
var maxHeight = 0;
$sameHeightDivs.each(function() {
maxHeight = Math.max(maxHeight, $(this).outerHeight());
});
$sameHeightDivs.css({ height: maxHeight + 'px' });
});
});
\ No newline at end of file
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.2.17
Version: 1.2.18
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......