archiveweb.page icon indicating copy to clipboard operation
archiveweb.page copied to clipboard

This website cannot be saved correctly

Open xjl456852 opened this issue 2 years ago • 1 comments

The latex online website cannot be saved correctly. Can't open the result. The result page always fails to open image Thank you

xjl456852 avatar Dec 27 '22 17:12 xjl456852

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.

ikreymer avatar Jan 15 '23 20:01 ikreymer