You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To ensure an accessible web, and for the sake of passing accessibility audits, please can we set the title for the generated iframe? Looking through the code it would be similar to how the id is set.
iframe.id = "netlify-identity-widget";
iframe.title = "Netlify identity widget";
The text was updated successfully, but these errors were encountered:
Chrome's Lighthouse tab made me aware of this issue. I solved this in my Vue app with a simple check that seems to be working for me:
// in main.jsimportnetlifyIdentityfrom'netlify-identity-widget';letnetlifyIdentityWidgetIframe=document.getElementById('netlify-identity-widget');if(!netlifyIdentityWidgetIframe){netlifyIdentity.init();}
To ensure an accessible web, and for the sake of passing accessibility audits, please can we set the title for the generated
iframe
? Looking through the code it would be similar to how theid
is set.iframe.id = "netlify-identity-widget";
iframe.title = "Netlify identity widget";
The text was updated successfully, but these errors were encountered: