We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1140d50 commit 3e3f492Copy full SHA for 3e3f492
graphics-aria/common/script/aria.js
@@ -458,7 +458,8 @@ require(['core/pubsubhub'], function (respecEvents) {
458
if (!skipIndex) {
459
// build up the complete inherited SP lists for each role
460
// however, if the role already specifies an item, do not include it
461
- Object.keys(roleInfo).forEach(function (item) {
+ Object.entries(roleInfo).forEach(function (index) {
462
+ var item = index[1];
463
var output = '';
464
var placeholder = document.querySelector(
465
'#' + item.fragID + ' .role-inherited'
0 commit comments