c0fcb683 by Jeff Balicki

stuff

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent d260207a
...@@ -6865,6 +6865,26 @@ ...@@ -6865,6 +6865,26 @@
6865 jQuery('#contact_popup').modal('show'); //this is the bootstrap modal popup id 6865 jQuery('#contact_popup').modal('show'); //this is the bootstrap modal popup id
6866 } 6866 }
6867 }, false); 6867 }, false);
6868 $(window).resize(function () {
6869 var $sameHeightDivs = $('.link-block.image-text .text');
6870 var maxHeight = 0;
6871 $sameHeightDivs.each(function () {
6872 maxHeight = Math.max(maxHeight, $(this).outerHeight());
6873 });
6874 $sameHeightDivs.css({
6875 height: maxHeight + 'px'
6876 });
6877 });
6878 $(document).ready(function () {
6879 var $sameHeightDivs = $('.link-block.image-text .text');
6880 var maxHeight = 0;
6881 $sameHeightDivs.each(function () {
6882 maxHeight = Math.max(maxHeight, $(this).outerHeight());
6883 });
6884 $sameHeightDivs.css({
6885 height: maxHeight + 'px'
6886 });
6887 });
6868 }); 6888 });
6869 6889
6870 exports.Alert = alert; 6890 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($) { ...@@ -21,5 +21,25 @@ jQuery( document ).ready(function($) {
21 21
22 }, false ); 22 }, false );
23 23
24 })
25 24
25
26
27 $(window).resize(function(){
28 var $sameHeightDivs = $('.link-block.image-text .text');
29 var maxHeight = 0;
30 $sameHeightDivs.each(function() {
31 maxHeight = Math.max(maxHeight, $(this).outerHeight());
32 });
33 $sameHeightDivs.css({ height: maxHeight + 'px' });
34
35 });
36
37 $(document).ready(function () {
38 var $sameHeightDivs = $('.link-block.image-text .text');
39 var maxHeight = 0;
40 $sameHeightDivs.each(function() {
41 maxHeight = Math.max(maxHeight, $(this).outerHeight());
42 });
43 $sameHeightDivs.css({ height: maxHeight + 'px' });
44 });
45 });
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 Author: the Understrap Contributors 5 Author: the Understrap Contributors
6 Author URI: https://github.com/understrap/understrap-child/graphs/contributors 6 Author URI: https://github.com/understrap/understrap-child/graphs/contributors
7 Template: understrap 7 Template: understrap
8 Version: 1.2.17 8 Version: 1.2.18
9 License: GNU General Public License v2 or later 9 License: GNU General Public License v2 or later
10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
11 Text Domain: understrap-child 11 Text Domain: understrap-child
......