fix(theme-basic): close navbar dropdowns on window resize

pull/1567/head
TheDiaval 6 years ago
parent 7451adcada
commit d49de5f88b

@ -98,11 +98,11 @@ export class LayoutApplicationComponent implements AfterViewInit, OnDestroy {
private checkWindowWidth() {
setTimeout(() => {
this.navbarRootDropdowns.forEach(item => {
item.close();
});
if (window.innerWidth < 768) {
this.isDropdownChildDynamic = false;
this.navbarRootDropdowns.forEach(item => {
item.close();
});
} else {
this.isDropdownChildDynamic = true;
}

Loading…
Cancel
Save