D4RRΞN
D4RRΞN
+1 @BrandonCopley can you share where you found that or example code on how you did it?
For anyone else: ``` var possibleKeys = ['number', 'expMonth', 'expYear', 'cvc', 'name','addressLine1', 'addressLine2', 'addressCity', 'addressState', 'addressZip', 'addressCountry'] ```
Yes, I just upgraded from an earlier version and it appears the lib is now using transform3D when dragging. This appears to override the z-index. I've been researching but have...
Additionally the solution referenced in #103 doesn't solve this for me.
@manjeshbhargav any success?
Indeed. :)
Really though, it's not very necessary to use node-oauth for OAuth 2 flows since there's no crypto/signing involved. https://gist.github.com/3876911
> I don't know what we could reasonably do about this besides document it. I don't think SvelteKit should drop down its maximum size of this header because you might...
> @http-teapot note that another fix is in your app code, you can create a `hooks.server.js` with a `handle` hook that does: > > ```ts > /** @type {import('@sveltejs/kit').Handle} */...
Just using my own function for this now ``` timeSince: (date) => { if (!date) return date = new Date(date) let seconds = Math.floor((new Date() - date) / 1000) let...