Merge pull request #295 from nolanlawson/nolan/fix-tabindex
fix: use tabIndex, not tabindexnolan/hinaloe-test
commit
af29bd19b0
|
@ -35,7 +35,7 @@ export default class SkinsDot extends Skins {
|
||||||
onClick={this.handleClick}
|
onClick={this.handleClick}
|
||||||
onKeyDown={this.handleKeyDown}
|
onKeyDown={this.handleKeyDown}
|
||||||
role="button"
|
role="button"
|
||||||
tabindex={visible ? '0' : ''}
|
tabIndex={visible ? '0' : ''}
|
||||||
aria-hidden={!visible}
|
aria-hidden={!visible}
|
||||||
aria-pressed={opened ? !!selected : ''}
|
aria-pressed={opened ? !!selected : ''}
|
||||||
aria-haspopup={!!selected}
|
aria-haspopup={!!selected}
|
||||||
|
|
Loading…
Reference in New Issue