Seth Broweleit

Results 1 comments of Seth Broweleit

Here is how I had to handle it for any overlays: ``` window.onpopstate = function(event) { let overlay = document.getElementsByClassName('cdk-overlay-backdrop-showing')[0]; overlay && overlay.click(); }; ``` or in the AppComponent ```...