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

Commit ef4fec4

Browse files
author
Alice Boxhall
committed
Release v2.7.1-rc.1
1 parent 91ec709 commit ef4fec4

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 2.7.1-rc.1 - 2015-06-23
2+
13
### Bug fixes:
24

35
* Check for null `textAlternatives` in `FocusableElementNotVisibleAndNotAriaHidden`'s `relevantElementMatcher` method.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "accessibility-developer-tools",
3-
"version": "2.7.1-rc.0",
3+
"version": "2.7.1-rc.1",
44
"homepage": "https://github.com/GoogleChrome/accessibility-developer-tools",
55
"authors": [
66
"Google"

dist/js/axs_testing.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*
16-
* Generated from http://github.com/GoogleChrome/accessibility-developer-tools/tree/c4f8e2d24fc5bbba7000e8c3b9308ff24bd762ff
16+
* Generated from http://github.com/GoogleChrome/accessibility-developer-tools/tree/91ec7093ac31a45c6b3611e65e08ef82ecdc11d1
1717
*
1818
* See project README for build steps.
1919
*/
@@ -1856,7 +1856,7 @@ axs.AuditRules.addRule({name:"focusableElementNotVisibleAndNotAriaHidden", headi
18561856
return!1;
18571857
}
18581858
}
1859-
return "" === axs.properties.findTextAlternatives(a, {}).trim() ? !1 : !0;
1859+
return(a = axs.properties.findTextAlternatives(a, {})) && "" !== a.trim() ? !0 : !1;
18601860
}, test:function(a) {
18611861
if (axs.utils.isElementOrAncestorHidden(a)) {
18621862
return!1;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "accessibility-developer-tools",
3-
"version": "2.7.1-rc.0",
3+
"version": "2.7.1-rc.1",
44
"repository": {
55
"type": "git",
66
"url": "http://github.com/GoogleChrome/accessibility-developer-tools"

0 commit comments

Comments
 (0)