Mike Goodfellow
Mike Goodfellow
The `No wrap` options are simply to do with how/when the code is executed. If the code is running on the "onLoad" event of the page, it is too late,...
@SempaChoo it looks like you might be describing: https://github.com/alexk111/ngImgCrop/issues/91 Although, I notice in the given URL it shows 1.3.14 as the AngularJS version which isn't latest.
What is interesting is this commit from Jan 2018: https://github.com/EgorBo/Toasts.Forms.Plugin/commit/a4662785fe876595482ee46e54eb30f8cd7cb150#diff-eb4edc0732b64df8b7078b5537ddb7f5R223 This actually adds a comment about a runtime version of this exception, but now something else has changed and it...
As an aside, I have lifted my minimum supported Android version to 6.0 (API Level 23 - Marshmellow) and it links fine now. I was using Android 5.0 (Level 21)...
@tidusjar Some other things I did - I built using Android 8 Oreo SDK, and I also forced the Target Android version to Android 8. I also removed the bin/obj...
Hi @phalpin, Thanks for the PR! This has always been a contraversial one - I have wanted to update it for a while, unfortunately RestSharp introduced a bunch of breaking...
Hi, This project is deprecated. Please use the official Intercom .NET client from Intercom: https://github.com/intercom/intercom-dotnet Cheers
Some additional info: https://github.com/mgoodfellow/swr_revalidate_test/blob/master/swr-revalidate-test/src/pages/index.tsx#L15 It seems this value is honoured for subsequent requests, but the initial focusThrottleInterval after a page load is the default of 5s
Right, I see the issue: https://github.com/vercel/swr/blob/1d8110900d1aee3747199bfb377b149b7ff6848e/core/src/use-swr.ts#L594 The `nextFocusRevalidatedAt` is only calculated after the initial focus revalidation. So we end up with this issue where the first throttle interval is always...
So updating my example from the initial repo: https://github.com/mgoodfellow/swr_revalidate_test/pull/1 This uses the built libraries from the PR I opened above, and the behaviour is now as expected: That initial refresh...