korywka
korywka
can try `color: transparent;` but IE6 support =(
`input {color: #000 !important}` =)
@mathiasbynens http://codepen.io/anon/pen/ibKrg
🔝 and no error message visible to user. just nothing happens.
Ahh, okay. It would be nice if this was more obviously from error message.
Looks like it doesn't work without extends too. Can someone confirm please?
I solved it with migrating to VSCode. WebStorm very nice IDE with such poor quality Svelte support. Not going to renew my license 😕
I mean publishing it on deno.land/x: https://deno.land/manual@main/publishing
`Buffer` is node.js - only type as far as I know. I think all `Buffer` - specific logic needs to be rewrite to native `ArrayBuffer`. https://github.com/MasterKale/SimpleWebAuthn/blob/master/packages/server/src/registration/generateRegistrationOptions.ts#L19
Deno have global `crypto` just like browser. So code for Deno will be 100% the same as for browser. Example of my WebAuthn code that works in both environments without...