For several months there has been a bug that prevents the main menu from loading, at least on the initial page hit. It's happening on my website as well as RG's portal, so I assume the issue is widespread and affects a number of rescues.
The root cause is that a JS file necessary to properly load the menu is being blocked by modern browsers because it is invoked via document.write. Basically, it's an outdated method and browsers have started to enforce various policies for security. Thus, the JS file doesn't load on the initial page hit.
A simple and effective workaround is to place the contents of the JS file in the head of your website. This is something anyone can do and it will resolve the problem.
For several months there has been a bug that prevents the main menu from loading, at least on the initial page hit. It's happening on my website as well as RG's portal, so I assume the issue is widespread and affects a number of rescues.
The root cause is that a JS file necessary to properly load the menu is being blocked by modern browsers because it is invoked via document.write. Basically, it's an outdated method and browsers have started to enforce various policies for security. Thus, the JS file doesn't load on the initial page hit.
A simple and effective workaround is to place the contents of the JS file in the head of your website. This is something anyone can do and it will resolve the problem.
In your RG portal: