diff options
| author | fat <[email protected]> | 2012-12-22 13:57:57 -0800 |
|---|---|---|
| committer | fat <[email protected]> | 2012-12-22 13:57:57 -0800 |
| commit | 2c0ed072b07f79eb617f15062f52fa349e95305d (patch) | |
| tree | e5833b1f7ee9f79b132a1957f71708f7341e3a11 /js | |
| parent | 4d195222d46c21fe31dfa1246bdb11474476b36d (diff) | |
| download | bootstrap-2c0ed072b07f79eb617f15062f52fa349e95305d.tar.xz bootstrap-2c0ed072b07f79eb617f15062f52fa349e95305d.zip | |
shifting focus to parent and adding aria menuitem for dropdown
Diffstat (limited to 'js')
| -rw-r--r-- | js/bootstrap-dropdown.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/js/bootstrap-dropdown.js b/js/bootstrap-dropdown.js index 914eabde7..14e01cd5a 100644 --- a/js/bootstrap-dropdown.js +++ b/js/bootstrap-dropdown.js @@ -81,7 +81,10 @@ isActive = $parent.hasClass('open') - if (!isActive || (isActive && e.keyCode == 27)) return $this.click() + if (!isActive || (isActive && e.keyCode == 27)) { + if (e.which == 27) $parent.find(toggle).focus() + return $this.click() + } $items = $('[role=menu] li:not(.divider):visible a', $parent) |
