Version Description
- Based on support for screen-reader-text class and current support for aria-current, shifting to aria only.
Download this release
Release Info
Developer | joedolson |
Plugin | WP Accessibility |
Version | 1.6.10 |
Comparing to | |
See all releases |
Code changes from version 1.6.9 to 1.6.10
- js/current-menu-item.js +1 -1
- readme.txt +5 -1
- wp-accessibility.php +2 -2
js/current-menu-item.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
(function ($) {
|
2 |
$(function() {
|
3 |
-
$( '.current-menu-item a, .current_page_item a' ).attr( 'aria-current', 'page' )
|
4 |
});
|
5 |
}(jQuery));
|
1 |
(function ($) {
|
2 |
$(function() {
|
3 |
+
$( '.current-menu-item a, .current_page_item a' ).attr( 'aria-current', 'page' );
|
4 |
});
|
5 |
}(jQuery));
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: title, accessibility, accessible, navigation, wcag, a11y, section508, focu
|
|
5 |
Requires at least: 3.4.2
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 5.2
|
8 |
-
Stable tag: 1.6.
|
9 |
Text Domain: wp-accessibility
|
10 |
License: GPLv2 or later
|
11 |
|
@@ -65,6 +65,10 @@ The plug-in is intended to help with deficiencies commonly found in themes and t
|
|
65 |
[Suggest a change!](https://github.com/joedolson/wp-accessibility/issues/)
|
66 |
* Conflict with NextGen gallery to explore
|
67 |
|
|
|
|
|
|
|
|
|
68 |
= 1.6.9 =
|
69 |
|
70 |
* Different JS for aria-current; previous version could only work on a single element, not a collection.
|
5 |
Requires at least: 3.4.2
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 5.2
|
8 |
+
Stable tag: 1.6.10
|
9 |
Text Domain: wp-accessibility
|
10 |
License: GPLv2 or later
|
11 |
|
65 |
[Suggest a change!](https://github.com/joedolson/wp-accessibility/issues/)
|
66 |
* Conflict with NextGen gallery to explore
|
67 |
|
68 |
+
= 1.6.10 =
|
69 |
+
|
70 |
+
* Based on support for screen-reader-text class and current support for aria-current, shifting to aria only.
|
71 |
+
|
72 |
= 1.6.9 =
|
73 |
|
74 |
* Different JS for aria-current; previous version could only work on a single element, not a collection.
|
wp-accessibility.php
CHANGED
@@ -17,7 +17,7 @@
|
|
17 |
* Domain Path: /lang
|
18 |
* License: GPL-2.0+
|
19 |
* License URI: http://www.gnu.org/license/gpl-2.0.txt
|
20 |
-
* Version: 1.6.
|
21 |
*/
|
22 |
|
23 |
/*
|
@@ -68,7 +68,7 @@ function wpa_admin_menu() {
|
|
68 |
* Install on activation.
|
69 |
*/
|
70 |
function wpa_install() {
|
71 |
-
$wpa_version = '1.6.
|
72 |
if ( 'true' !== get_option( 'wpa_installed' ) ) {
|
73 |
add_option( 'rta_from_nav_menu', 'on' );
|
74 |
add_option( 'rta_from_page_lists', 'on' );
|
17 |
* Domain Path: /lang
|
18 |
* License: GPL-2.0+
|
19 |
* License URI: http://www.gnu.org/license/gpl-2.0.txt
|
20 |
+
* Version: 1.6.10
|
21 |
*/
|
22 |
|
23 |
/*
|
68 |
* Install on activation.
|
69 |
*/
|
70 |
function wpa_install() {
|
71 |
+
$wpa_version = '1.6.10';
|
72 |
if ( 'true' !== get_option( 'wpa_installed' ) ) {
|
73 |
add_option( 'rta_from_nav_menu', 'on' );
|
74 |
add_option( 'rta_from_page_lists', 'on' );
|