dual-drawer fix issue #1383

This commit is contained in:
charles 2020-01-12 11:45:02 -05:00
parent 0a0e78d563
commit 9dbae83bd7

View File

@ -89,6 +89,9 @@ const Drawer = ($ => {
return;
}
$(".bmd-layout-drawer").hide();
this.$element.show();
this.$toggles.attr("aria-expanded", true);
this.$element.attr("aria-expanded", true);
this.$element.attr("aria-hidden", false);
@ -109,6 +112,9 @@ const Drawer = ($ => {
return;
}
$(".bmd-layout-drawer").hide();
this.$element.show();
this.$toggles.attr("aria-expanded", false);
this.$element.attr("aria-expanded", false);
this.$element.attr("aria-hidden", true);