diff options
author | Richard Worth <rdworth@gmail.com> | 2010-03-17 23:22:02 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2010-03-17 23:22:02 +0000 |
commit | f2438fe7ebe9a8be30d7d419c1b267c69490a37b (patch) | |
tree | 49ca009e92d88c674f562b75424d8ca83e86ed64 /ui/jquery.ui.autocomplete.js | |
parent | 119937725f90d00886d2ddb1375f94c2d8e11ad3 (diff) | |
download | jquery-ui-f2438fe7ebe9a8be30d7d419c1b267c69490a37b.tar.gz jquery-ui-f2438fe7ebe9a8be30d7d419c1b267c69490a37b.zip |
fixed #5368 - Autocomplete: aria role for menu should be listbox instead of menu
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 200f9b431..6641e4e92 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -327,7 +327,7 @@ $.widget("ui.menu", { this.element .addClass("ui-menu ui-widget ui-widget-content ui-corner-all") .attr({ - role: "menu", + role: "listbox", "aria-activedescendant": "ui-active-menuitem" }) .click(function(e) { |