Carl Vitullo
Carl Vitullo
Same issue, appears to be any number with 6 or more leading 0s. ``` numeral(.0000001).format('0') > "NaN" numeral(.000001).format('0') > "0" numeral(.0000005).format('0') > "NaN" numeral(.0000009).format('0') > "NaN" numeral(.0000010).format('0') > "0" numeral(.0000015).format('0')...
Oh interesting, I see what's going on. What would you propose as a solution, a prop for a DOM node to listen to for scroll events? Like, `scrollingNode` with a...
Hmm, this should be handled by the unmount logic, which [cancels any outstanding animation frames](https://github.com/captivationsoftware/react-sticky/blob/master/src/Container.js#L71-L74). I don't have an IE11 environment handy, so any digging you're able to do on...
Hmm interesting. It definitely seems possible that `raf` and `dom4` might be interacting badly. Arguably it's beyond the scope of `react-sticky` to polyfill `requestAnimationFrame`, but changing that would be a...
(just saw your edit): Let me know what else you find! I'd rather avoid a null check, since we have logic already that should be preventing this from occurring.
This would be a dramatically new API, it's possible on a technical level but it'd be a significant change. There would still need to be a `StickyContainer` somewhere in the...
Hey @simondel this slipped past me! This is a good idea, I'd love to see a PR if you have some time.
Ah interesting! Good point, that does seem like a viable use-case. Do you have any specific API in mind? First thought would be an additional argument passed to the `render`...
Good thing there's a workaround then @marklai1998! I haven't had much time to dedicate to developing `react-sticky`, other projects have taken priority.
Good idea! I'm happy to merge a PR if you want to submit one @Simon-Tang :)