mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Focus (visually hidden) input radio/checkbox
This allows for keyboard navigation (e.g. arrow keys left/right to trigger different radio buttons) following an initial mouse click interaction
This commit is contained in:
parent
9b4cfdceda
commit
a496cb8be4
1 changed files with 3 additions and 0 deletions
|
@ -92,7 +92,10 @@ const Button = (($) => {
|
|||
input.checked = !$(this._element).hasClass(ClassName.ACTIVE)
|
||||
$(this._element).trigger('change')
|
||||
}
|
||||
|
||||
$(input).trigger('focus')
|
||||
}
|
||||
|
||||
} else {
|
||||
this._element.setAttribute('aria-pressed',
|
||||
!$(this._element).hasClass(ClassName.ACTIVE))
|
||||
|
|
Loading…
Add table
Reference in a new issue