Button widget: apply aria-expanded attribute when controlling a popup

Addresses (1) and (5) from #5519
This commit is contained in:
jeremy@jermolene.com 2021-03-01 17:59:29 +00:00
parent e84c87ef37
commit d56e8764a1
1 changed files with 3 additions and 0 deletions

View File

@ -66,6 +66,9 @@ ButtonWidget.prototype.render = function(parent,nextSibling) {
if(this["aria-label"]) {
domNode.setAttribute("aria-label",this["aria-label"]);
}
if(this.popup || this.popupTitle) {
domNode.setAttribute("aria-expanded",isPoppedUp ? "true" : "false");
}
// Set the tabindex
if(this.tabIndex) {
domNode.setAttribute("tabindex",this.tabIndex);