Skip to content

Commit 2efbc08

Browse files
committed
fixed - screen reader text
1 parent 72f14a4 commit 2efbc08

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

README.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: equalizedigital, alh0319, stevejonesdev
33
Tags: accessibility, accessible, wcag, ada, WP accessibility, section 508, aoda, a11y, audit, readability, content analysis
44
Requires at least: 5.0.0
55
Tested up to: 6.3
6-
Stable tag: 1.5.0
6+
Stable tag: 1.5.1
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -171,6 +171,9 @@ No, Accessibility Checker runs completely on your server and does not require yo
171171

172172
== Changelog ==
173173

174+
= 1.5.1 =
175+
Updated: button screen reader text
176+
174177
= 1.5.0 =
175178
Added: site wide summary
176179
Added: accessibility checker dashboard widget

accessibility-checker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Accessibility Checker
1111
* Plugin URI: https://a11ychecker.com
1212
* Description: Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.
13-
* Version: 1.5.0
13+
* Version: 1.5.1
1414
* Author: Equalize Digital
1515
* Author URI: https://equalizedigital.com
1616
* License: GPL-2.0+
@@ -89,7 +89,7 @@ function edac_fs_custom_icon() {
8989

9090
// Current plugin version.
9191
if ( ! defined( 'EDAC_VERSION' ) ) {
92-
define( 'EDAC_VERSION', '1.5.0' );
92+
define( 'EDAC_VERSION', '1.5.1' );
9393
}
9494

9595
// Current database version.

src/app/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ class AccessibilityCheckerHighlight {
368368
addHighlightPanel() {
369369
const newElement = `
370370
<div class="edac-highlight-panel">
371-
<button id="edac-highlight-panel-toggle" class="edac-highlight-panel-toggle" aria-haspopup="dialog">Accessibility Checker Tools</button>
371+
<button id="edac-highlight-panel-toggle" class="edac-highlight-panel-toggle" aria-haspopup="dialog" aria-label="Accessibility Checker Tools"></button>
372372
<div id="edac-highlight-panel-description" class="edac-highlight-panel-description" role="dialog" aria-labelledby="edac-highlight-panel-description-title" tabindex="0">
373373
<button id="edac-highlight-panel-controls-close" class="edac-highlight-panel-controls-close" aria-label="Close">×</button>
374374
<div class="edac-highlight-panel-description-title"></div>

0 commit comments

Comments
 (0)