dsplz
Results
4
comments of
dsplz
+1, same error at ftp-remote-edit
Hello Yes, got the same problem. Resizing to mobile works, but if you increase the browser width again, there is no reload. Cheers
@samuelgoddard I made it manually like something like this: ``` const desktop = window.matchMedia('screen and (min-width: 768px)'); const mobile = window.matchMedia('screen and (max-width: 767px)'); desktop.addListener(function(e) { if (e.matches) { location.reload();...