diff options
author | Felix Nagel <info@felixnagel.com> | 2016-12-25 17:47:08 +0100 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2017-01-25 18:29:45 +0100 |
commit | 00a470b435608940c4d829e91d00b587294af0eb (patch) | |
tree | a2d82ce3a91e3cff9f46eed542f5cfc316e27e3b | |
parent | 767d1730403ff2d184717b43042d3ba98b71596c (diff) | |
download | jquery-ui-00a470b435608940c4d829e91d00b587294af0eb.tar.gz jquery-ui-00a470b435608940c4d829e91d00b587294af0eb.zip |
Calendar: Remove aria hidden on day cells
-rw-r--r-- | ui/widgets/calendar.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/widgets/calendar.js b/ui/widgets/calendar.js index 31a650d0e..256347054 100644 --- a/ui/widgets/calendar.js +++ b/ui/widgets/calendar.js @@ -456,8 +456,7 @@ return $.widget( "ui.calendar", { "role='gridcell'", "aria-selected='" + ( this._isCurrent( day ) ? true : false ) + "'", "aria-label='" + dayName + ", " + this._format( dateObject ) + "'", - "aria-describedby='" + this.gridId + "-month-label'", - "aria-hidden='" + true + "'" + "aria-describedby='" + this.gridId + "-month-label'" ], selectable = ( day.selectable && this._isValid( dateObject ) ); |