woocommerce / FlexSlider

An awesome, fully responsive jQuery slider plugin
http://www.woocommerce.com/flexslider/
GNU General Public License v2.0
4.92k stars 1.69k forks source link

Resize doesn't work in 2.6.4, works in 2.6.3 #1695

Closed Frank-Steiner closed 6 years ago

Frank-Steiner commented 6 years ago

Hi, using flexslider 2.6.4 the pictures don't resize when the browser window resizes, only the frame showing the pics does. Thus the pics either get cropped or part of the next pic is shown on the right border. In 2.6.3 it works fine and comparing the two showed that in line 148

if (!fade || (fade && slider.vars.smoothHeight)) { $(window).bind("resize orientationchange focus", methods.resize()); }

had to changed to if (!fade || (fade && slider.vars.smoothHeight)) { $(window).bind("resize orientationchange focus", methods.resize); }

I've no idea it that destroys sth. else like resize on orientation changes etc, on my desktop browsers it works fine.

Just to let you know...

cu, Frank

jeffikus commented 6 years ago

Hi there, I released 2.7.0 last week, please let me know if the issue persists after updating.

Frank-Steiner commented 6 years ago

The problem is solved with the update :-) Thanks a lot!