Skip to content

Commit

Permalink
Generated by TRAVIS-CI da323de
Browse files Browse the repository at this point in the history
TRAVIS-CI update from aria-common
  • Loading branch information
michael-n-cooper committed Jan 15, 2019
1 parent 1512d21 commit bc83f6e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -588,9 +588,9 @@
"preProcess": [
null
],
"publishDate": "2019-01-14",
"publishISODate": "2019-01-14T00:00:00.000Z",
"generatedSubtitle": "Editor's Draft 14 January 2019"
"publishDate": "2019-01-15",
"publishISODate": "2019-01-15T00:00:00.000Z",
"generatedSubtitle": "Editor's Draft 15 January 2019"
}</script><meta name="description" content="This document provides readers with an understanding of how to use WAI-ARIA 1.1 [WAI-ARIA] to create accessible rich internet applications.
It describes considerations that might not be evident to most authors from the WAI-ARIA specification alone and recommends approaches to make widgets, navigation, and behaviors accessible using WAI-ARIA roles, states, and properties.
This document is directed primarily to Web application developers, but the guidance is also useful for user agent and assistive technology developers."></head>
Expand All @@ -599,7 +599,7 @@

<h2>
<abbr title="World Wide Web Consortium">W3C</abbr> Editor's Draft
<time class="dt-published" datetime="2019-01-14">14 January 2019</time>
<time class="dt-published" datetime="2019-01-15">15 January 2019</time>
</h2>
<dl>
<dt>This version:</dt><dd>
Expand Down

0 comments on commit bc83f6e

Please sign in to comment.