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
One of the teams I work with is using it and we detected a problem on IE 11.
With a top-sticky element, when we scroll down everything works fine, but when we scroll all the way up to the top of the page, the sticky element gets a width of 0 and still has the position: fixed; style.
We use the directive like this : v-sticky="stickyEnabled", stickyEnabled goes true when scrolling passed a certain point, and the height of the sticky element is modified because it's content changes (we add a placeholder to avoid "jumping").
I'm not sure this is related to this issue, but on IE the top-sticky class never gets removed: on line 212, two string are passed to classList.remove(), but on IE only one is accepted
The text was updated successfully, but these errors were encountered:
Hi! First off, thanks for making this directive!
One of the teams I work with is using it and we detected a problem on IE 11.
With a top-sticky element, when we scroll down everything works fine, but when we scroll all the way up to the top of the page, the sticky element gets a width of 0 and still has the
position: fixed;
style.We use the directive like this :
v-sticky="stickyEnabled"
,stickyEnabled
goestrue
when scrolling passed a certain point, and the height of the sticky element is modified because it's content changes (we add a placeholder to avoid "jumping").I'm not sure this is related to this issue, but on IE the
top-sticky
class never gets removed: on line 212, two string are passed toclassList.remove()
, but on IE only one is acceptedThe text was updated successfully, but these errors were encountered: