Skip to content

Commit

Permalink
TRAVIS-CI update from aria-common
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-n-cooper committed Jan 15, 2019
1 parent 37388d1 commit da323de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions common/script/aria.js
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,8 @@ require(["core/pubsubhub"], function( respecEvents ) {
// Some subroles have required properties which are also required by the superclass.
// Example: The checked state of radio, which is also required by superclass checkbox.
// We only want to include these one time, so filter out the subroles.
children = jQuery.grep(children, function(subrole) {
return jQuery.inArray(subrole, propList[item.name].roles) == -1;
children = $.grep(children, function(subrole) {
return $.inArray(subrole, propList[item.name].roles) == -1;
});
$.merge(myList, children);
});
Expand Down
4 changes: 2 additions & 2 deletions common/script/ariaChild.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ require(["core/pubsubhub"], function( respecEvents ) {
// Some subroles have required properties which are also required by the superclass.
// Example: The checked state of radio, which is also required by superclass checkbox.
// We only want to include these one time, so filter out the subroles.
children = jQuery.grep(children, function(subrole) {
return jQuery.inArray(subrole, propList[item.name].roles) == -1;
children = $.grep(children, function(subrole) {
return $.inArray(subrole, propList[item.name].roles) == -1;
});
$.merge(myList, children);
});
Expand Down

0 comments on commit da323de

Please sign in to comment.