Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 4a5e6a7

Browse files
NickHeinerwesleycho
authored andcommitted
fix(modal): improve ARIA support
- Add aria-labelledby and aria-described by support Closes #4772
1 parent af6c2aa commit 4a5e6a7

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

src/modal/docs/demo.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<div ng-controller="ModalDemoCtrl">
22
<script type="text/ng-template" id="myModalContent.html">
33
<div class="modal-header">
4-
<h3 class="modal-title">I'm a modal!</h3>
4+
<h3 class="modal-title" id="modal-title">I'm a modal!</h3>
55
</div>
6-
<div class="modal-body">
6+
<div class="modal-body" id="modal-body">
77
<ul>
88
<li ng-repeat="item in items">
99
<a href="#" ng-click="$event.preventDefault(); selected.item = item">{{ item }}</a>
@@ -22,4 +22,4 @@ <h3 class="modal-title">I'm a modal!</h3>
2222
<button type="button" class="btn btn-default" ng-click="open('sm')">Small modal</button>
2323
<button type="button" class="btn btn-default" ng-click="toggleAnimation()">Toggle Animation ({{ animationsEnabled }})</button>
2424
<div ng-show="selected">Selection from a modal: {{ selected }}</div>
25-
</div>
25+
</div>

src/modal/docs/demo.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ angular.module('ui.bootstrap.demo').controller('ModalDemoCtrl', function ($scope
88

99
var modalInstance = $uibModal.open({
1010
animation: $scope.animationsEnabled,
11+
ariaLabelledBy: 'modal-title',
12+
ariaDescribedBy: 'modal-body',
1113
templateUrl: 'myModalContent.html',
1214
controller: 'ModalInstanceCtrl',
1315
size: size,

src/modal/docs/readme.md

+8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ The `$uibModal` service has only one method: `open(options)`.
1414
* `appendTo`
1515
_(Type: `angular.element`, Default: `body`: Example: `$document.find('aside').eq(0)`)_ -
1616
Appends the modal to a specific element.
17+
18+
* `ariaDescribedBy`
19+
_(Type: `string`, `my-modal-description`)_ -
20+
Sets the [`aria-describedby`](https://www.w3.org/TR/wai-aria/states_and_properties#aria-describedby) property on the modal. The value should be an id (without the leading `#`) pointing to the element that describes your modal. Typically, this will be the text on your modal, but does not include something the user would interact with, like buttons or a form. Omitting this option will not impact sighted users but will weaken your accessibility support.
21+
22+
* `ariaLabelledBy`
23+
_(Type: `string`, `my-modal-title`)_ -
24+
Sets the [`aria-labelledby`](https://www.w3.org/TR/wai-aria/states_and_properties#aria-labelledby) property on the modal. The value should be an id (without the leading `#`) pointing to the element that labels your modal. Typically, this will be a header element. Omitting this option will not impact sighted users but will weaken your accessibility support.
1725

1826
* `backdrop`
1927
_(Type: `boolean|string`, Default: `true`)_ -

src/modal/modal.js

+4
Original file line numberDiff line numberDiff line change
@@ -504,6 +504,8 @@ angular.module('ui.bootstrap.modal', ['ui.bootstrap.stackedMap', 'ui.bootstrap.p
504504
'template-url': modal.windowTemplateUrl,
505505
'window-top-class': modal.windowTopClass,
506506
'role': 'dialog',
507+
'aria-labelledby': modal.ariaLabelledBy,
508+
'aria-describedby': modal.ariaDescribedBy,
507509
'size': modal.size,
508510
'index': topModalIndex,
509511
'animate': 'animate',
@@ -755,6 +757,8 @@ angular.module('ui.bootstrap.modal', ['ui.bootstrap.stackedMap', 'ui.bootstrap.p
755757
windowTopClass: modalOptions.windowTopClass,
756758
windowClass: modalOptions.windowClass,
757759
windowTemplateUrl: modalOptions.windowTemplateUrl,
760+
ariaLabelledBy: modalOptions.ariaLabelledBy,
761+
ariaDescribedBy: modalOptions.ariaDescribedBy,
758762
size: modalOptions.size,
759763
openedClass: modalOptions.openedClass,
760764
appendTo: modalOptions.appendTo

src/modal/test/modal.spec.js

+22
Original file line numberDiff line numberDiff line change
@@ -1465,6 +1465,28 @@ describe('$uibModal', function() {
14651465
expect(body).not.toHaveClass('modal-open');
14661466
});
14671467
});
1468+
1469+
describe('ariaLabelledBy', function() {
1470+
it('should add the aria-labelledby property to the modal', function() {
1471+
open({
1472+
template: '<div><h3 id="modal-label">Modal Label</h3><p id="modal-description">Modal description</p></div>',
1473+
ariaLabelledBy: 'modal-label'
1474+
});
1475+
1476+
expect($document.find('.modal').attr('aria-labelledby')).toEqual('modal-label');
1477+
});
1478+
});
1479+
1480+
describe('ariaDescribedBy', function() {
1481+
it('should add the aria-describedby property to the modal', function() {
1482+
open({
1483+
template: '<div><h3 id="modal-label">Modal Label</h3><p id="modal-description">Modal description</p></div>',
1484+
ariaDescribedBy: 'modal-description'
1485+
});
1486+
1487+
expect($document.find('.modal').attr('aria-describedby')).toEqual('modal-description');
1488+
});
1489+
});
14681490
});
14691491

14701492
describe('modal window', function() {

0 commit comments

Comments
 (0)