Is there a way to recognize when the columns are arranged in a stack, and avoid applying the equal height adjustment? I'm currently attempting to do this by examining the columns for their top offset as a filter before invoking your method:
$('.equal-height-columns')
.filter(...)
.equalHeightColumns(...);
but it's awkward, and I'm not exactly clear on whether I have to recalculate this every time the viewport changes.
Is there a way to recognize when the columns are arranged in a stack, and avoid applying the equal height adjustment? I'm currently attempting to do this by examining the columns for their top offset as a filter before invoking your method:
$('.equal-height-columns')
.filter(...)
.equalHeightColumns(...);
but it's awkward, and I'm not exactly clear on whether I have to recalculate this every time the viewport changes.