ginader / HTML5-placeholder-polyfill

Small and robust polyfill for the HTML5 placeholder attribut.
GNU General Public License v2.0
223 stars 85 forks source link

Add visible check on textarea on resize event and stop propagation #57

Closed jlowcs closed 10 years ago

jlowcs commented 10 years ago

Had some trouble in Chrome when forceApply=true : resize event in triggered on textarea when its parent is hidden, which has every placeholder being repositionned (which can be seen by the user).

This fix checks if the textarea is visible before repositionning the placeholder. It also stops the propagation on textarea resize.

ginader commented 10 years ago

thanks for that @jlowcs :-)