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
The problem is with this logic fork, what we want to do here is to always have the same way to interact with AC. It's ok if it requires hooking asynchronously, like a11ychecker.once( 'loaded', function() { … }) as long as it does not require this awful if fork.
The text was updated successfully, but these errors were encountered:
Currently there's this inconvenient way to listen for AC readiness, where it could be loaded either:
Reason for this is that the dev version uses Require.js for all the deps - which are inlined on release version to get rid of Require.js dependency.
Because of that often our snippets use code like:
To detect whether AC is fully functional yet.
The problem is with this logic fork, what we want to do here is to always have the same way to interact with AC. It's ok if it requires hooking asynchronously, like
a11ychecker.once( 'loaded', function() { … })
as long as it does not require this awfulif
fork.The text was updated successfully, but these errors were encountered: