Skip to content
This repository has been archived by the owner on Sep 18, 2018. It is now read-only.
Herst edited this page Sep 8, 2018 · 2 revisions

Note: Below is the original page from the Bootlint documentation, some of the info here might not apply to Bootlint-NG!


E049

.modal-dialog must have a role="document" attribute.

For accessibility reasons, all elements with the .modal-dialog class must have a role attribute with a value of document.

Wrong:

<div class="modal-dialog">
  ...
</div>

Right:

<div class="modal-dialog" role="document">
  ...
</div>