79600857

Date: 2025-04-30 17:53:50
Score: 1
Natty:
Report link

wait for the css animation to complete, then trigger a window resize event.

  toggleSidenav() {
  this.isExpanded = !this.isExpanded;
    setTimeout(() => {
    window.dispatchEvent(new Event('resize'));
  }, 400);
  }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sean Miller