Skip to content

Commit

Permalink
remove unnecessary describedby
Browse files Browse the repository at this point in the history
  • Loading branch information
e111077 committed Apr 2, 2024
1 parent a53c385 commit de90ecb
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ export class LitDevRippleIconButton extends LitElement {
@property()
haspopup = '';

/**
* Whether or not the contents describe the button with aria-describedby.
*/
@property({type: Boolean})
describedby = false;

/**
* Aria expanded for the button.
*/
Expand Down Expand Up @@ -174,7 +168,6 @@ export class LitDevRippleIconButton extends LitElement {
aria-live=${this.live ? this.live : nothing}
aria-label=${this.label ? this.label : nothing}
aria-haspopup=${this.haspopup ? this.haspopup : nothing}
aria-describedby=${this.describedby ? 'ripple' : nothing}
aria-expanded=${this.expanded ? this.expanded : nothing}
aria-controls=${this.controls ? this.controls : nothing}
?disabled=${this.disabled}
Expand Down

0 comments on commit de90ecb

Please sign in to comment.