Remove wrong ARIA role=tooltip from container

Removing wrong ARIA `role=tooltip`. Those are meant only for static
text content on short `title` like dynamic tooltips.

Bug: T223827
Change-Id: Ib4f490c7ad421e516fb0cf47eff4335bcaf26c43
This commit is contained in:
Volker E 2019-05-21 03:06:29 -07:00
parent 5f573d1abf
commit d1fc6786bf
3 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View file

@ -13,7 +13,7 @@ export function renderPopup( type, html ) {
type = escapeHTML( type );
return $( $.parseHTML( `
<div class='mwe-popups mwe-popups-type-${ type }' role='tooltip' aria-hidden>
<div class='mwe-popups mwe-popups-type-${ type }' aria-hidden>
<div class='mwe-popups-container'>${ html }</div>
</div>
`.trim() ) );