archiveweb.page
archiveweb.page copied to clipboard
This website cannot be saved correctly
The latex online website cannot be saved correctly.
Can't open the result.
The result page always fails to open
Thank you
Unfortunately, this site uses implicit globals across different files, eg. it declares
let boot_body = Config[Environment].Boot_OSS;
...
in one file, and then uses boot_body in other JS files.
We don't have a solution for this, and an example of what's describe in: webrecorder/wombat#82
An easy fix for the site is to use something like:
window.boot_body = Config[Environment].Boot_OSS;
...
Perhaps we can explore fixing this automatically in the future, but it is tricky.