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
When the height of the sticky-element is as high as the parent at start, the events won't ever get binded thus making it impossible for stickykit to activate when the content changes or when the window resizes.
A simple fix is commenting the following on line 71:
/*
if (height === parent_height) {
return;
}
*/
I don't know why this is even in the source code :)
The text was updated successfully, but these errors were encountered:
When the height of the sticky-element is as high as the parent at start, the events won't ever get binded thus making it impossible for stickykit to activate when the content changes or when the window resizes.
A simple fix is commenting the following on line 71:
I don't know why this is even in the source code :)
The text was updated successfully, but these errors were encountered: