Jono Menz
Jono Menz
You could try putting an extra div inside the container that has the padding on it, then set it to `position: absolute` with 100% width and height, and call focuspoint...
I think I might have already done this in the v2 branch. Try it out if you like
> Hi, its sad to see when such good project is being forgotten by its maintainer. However, I'm a believer :) Hi @RusinovAnton... I understand your disappointment and I want...
Thanks for the report, have been able to replicate in 44.0.2. Seems to be intermittent so that's annoying :) If you find a fix feel free to open a PR,...
> I noticed you don't use requestAnimationFrame for throttling; is there a reason for that? Hadn't occurred to me but browser support is a bit of a factor... not concerned...
I'm not too worried about battery life etc. since we're only talking about what's happening during the resize event. If someone is resizing their browser for more than a few...
Ha, well _I_ know what `a` means :) wanted it to be short but admit it's not very transparent. Yeah you can do some refactoring, just make sure there's a...
> 1 if statement removed. :+1: > Noticed that you are using an object for saving data, seems variables are faster, so that will be next on my STDs. I'm...
Cheers Tom. Whether to use debounce or throttle probably depends on context... for me I would always want to use throttle because I want to re-render as often as possible,...
I think you're mixing up debounce and throttle... although the definition probably shifts depending on where you read it. See: https://css-tricks.com/the-difference-between-throttling-and-debouncing/ throttle is used for rate limiting (e.g. once every...