Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Commit

Permalink
Release v2.7.1-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Alice Boxhall committed Jun 23, 2015
1 parent 91ec709 commit ef4fec4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 2.7.1-rc.1 - 2015-06-23

### Bug fixes:

* Check for null `textAlternatives` in `FocusableElementNotVisibleAndNotAriaHidden`'s `relevantElementMatcher` method.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "accessibility-developer-tools",
"version": "2.7.1-rc.0",
"version": "2.7.1-rc.1",
"homepage": "https://github.com/GoogleChrome/accessibility-developer-tools",
"authors": [
"Google"
Expand Down
4 changes: 2 additions & 2 deletions dist/js/axs_testing.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Generated from http://github.com/GoogleChrome/accessibility-developer-tools/tree/c4f8e2d24fc5bbba7000e8c3b9308ff24bd762ff
* Generated from http://github.com/GoogleChrome/accessibility-developer-tools/tree/91ec7093ac31a45c6b3611e65e08ef82ecdc11d1
*
* See project README for build steps.
*/
Expand Down Expand Up @@ -1856,7 +1856,7 @@ axs.AuditRules.addRule({name:"focusableElementNotVisibleAndNotAriaHidden", headi
return!1;
}
}
return "" === axs.properties.findTextAlternatives(a, {}).trim() ? !1 : !0;
return(a = axs.properties.findTextAlternatives(a, {})) && "" !== a.trim() ? !0 : !1;
}, test:function(a) {
if (axs.utils.isElementOrAncestorHidden(a)) {
return!1;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "accessibility-developer-tools",
"version": "2.7.1-rc.0",
"version": "2.7.1-rc.1",
"repository": {
"type": "git",
"url": "http://github.com/GoogleChrome/accessibility-developer-tools"
Expand Down

0 comments on commit ef4fec4

Please sign in to comment.