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
There's just a little detail, I checked for accessibility issues and Axe complains about this:
In short, it's because the <canvas> used is not contained inside a landmark. I think that a nice way to fix this would be specifying the element that should be the parent of that <canvas>, defaulting to <body> as it does now.
For example, I could configure Topbar to use the <header> element this way:
topbar.config({container : 'header'}’
where container could be the identifier of any DOM element.
What do you think?
The text was updated successfully, but these errors were encountered:
Hi! Thanks for building this, it works great :)
There's just a little detail, I checked for accessibility issues and Axe complains about this:
In short, it's because the
<canvas>
used is not contained inside a landmark. I think that a nice way to fix this would be specifying the element that should be the parent of that<canvas>
, defaulting to<body>
as it does now.For example, I could configure Topbar to use the
<header>
element this way:where
container
could be the identifier of any DOM element.What do you think?
The text was updated successfully, but these errors were encountered: