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
, we use jquery to find and fix the height of an output area in order to prevent jumpiness when clearing an output area. However, the jquery .height() function rounds the height to the nearest integer, which causes some jitter. It would be better to use .getBoundingClientRect().height, which doesn't round the height.