jQuery-Smart-Wizard icon indicating copy to clipboard operation
jQuery-Smart-Wizard copied to clipboard

fixHeight should not consider hidden children

Open mstratman opened this issue 11 years ago • 0 comments

I have one suggestion about the fixHeight function. When the function calculate the children's height : the hidden element are count.

Maybe the line 394 : stepContainer.children().each(function() { can be : stepContainer.children().not(':hidden').each(function() {

mstratman avatar Sep 20 '13 13:09 mstratman