We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace10bf commit c228066Copy full SHA for c228066
bootstrap-hover-dropdown.js
@@ -54,6 +54,7 @@
54
openDropdown(event);
55
}, function () {
56
timeout = window.setTimeout(function () {
57
+ $this.attr('aria-expanded', 'false');
58
$parent.removeClass('open');
59
$this.trigger(hideEvent);
60
}, settings.delay);
@@ -96,6 +97,7 @@
96
97
$allDropdowns.removeClass('open');
98
99
window.clearTimeout(timeout);
100
+ $this.attr('aria-expanded', 'true');
101
$parent.addClass('open');
102
$this.trigger(showEvent);
103
}
0 commit comments