diff --git a/module/my/js/index.js b/module/my/js/index.js index c89fbb13bd..bea8803cc0 100644 --- a/module/my/js/index.js +++ b/module/my/js/index.js @@ -6,7 +6,8 @@ $(function() /* Set the heights of every block to keep them same height. */ row1Height = $('#row1').height() - 10; row2Height = $('#row2').height() - 10; - row2Height = row2Height > 200 ? row2Height : 200; // Min height is 200px. + row1Height = row1Height > 200 ? row1Height : 200; // Min height is 200px. + row2Height = row2Height > 200 ? row2Height : 200; $('#row1 .block').each(function(){$(this).css('height', row1Height);}) $('#row2 .block').each(function(){$(this).css('height', row2Height);})