You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If box-sizing = border-box in IE is a problem, You just need to check if it is not IE but box-sizing in your code.
or I think we need to set a margin value to avoid unnecessary scrolling.
And,
I think we should only make it happen when the actual height is high. autosize.js#L143 actualHeight !== styleHeight ⇾ actualHeight > styleHeight
Please confirm.
The text was updated successfully, but these errors were encountered:
It was fixed to 29ca460 due to the
box-sizing =border-box
scrolling issue of IE #327.When
box-sizing = border-box
, the problem reported in #306 was reoccurring in Chrome. It's the same reason.If
box-sizing = border-box
in IE is a problem, You just need to check if it is not IE butbox-sizing
in your code.or I think we need to set a margin value to avoid unnecessary scrolling.
And,
I think we should only make it happen when the actual height is high. autosize.js#L143
actualHeight !== styleHeight
⇾actualHeight > styleHeight
Please confirm.
The text was updated successfully, but these errors were encountered: