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
Currently we use polling-based observation for fitting header. It tracks the change of size includes CSS animation certainly, but it has a big effect to the performance.
Chrome >= 64 is supported ResizeObserver to observe change the size of element with better performance. It has better to use it if possible.
The text was updated successfully, but these errors were encountered:
Safari 13.1 had shipped at this month, and now all modern browsers have implemented ResizeObserver. We may start working for new implementation of auto scaling.
If completed, the current polling-based logic would only use as fallback.
Currently we use polling-based observation for fitting header. It tracks the change of size includes CSS animation certainly, but it has a big effect to the performance.
Chrome >= 64 is supported
ResizeObserver
to observe change the size of element with better performance. It has better to use it if possible.The text was updated successfully, but these errors were encountered: