diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-09-18 11:19:59 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-09-18 11:19:59 -0400 |
commit | ce5017843036151d545fba76062655fda69eac62 (patch) | |
tree | 5b856f91d5c04348d84b4e82b7f7861bf4413989 /ui/widgets/autocomplete.js | |
parent | 0ff7a1653407d2a91cff721528a0a435dbf12503 (diff) | |
download | jquery-ui-ce5017843036151d545fba76062655fda69eac62.tar.gz jquery-ui-ce5017843036151d545fba76062655fda69eac62.zip |
Autocomplete: Use a `div` instead of a `span` for the live region
Fixes #14587
Diffstat (limited to 'ui/widgets/autocomplete.js')
-rw-r--r-- | ui/widgets/autocomplete.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/widgets/autocomplete.js b/ui/widgets/autocomplete.js index 1ebd6ed7a..4067f871f 100644 --- a/ui/widgets/autocomplete.js +++ b/ui/widgets/autocomplete.js @@ -329,7 +329,7 @@ $.widget( "ui.autocomplete", { } } ); - this.liveRegion = $( "<span>", { + this.liveRegion = $( "<div>", { role: "status", "aria-live": "assertive", "aria-relevant": "additions" |