pruned history for public release

This commit is contained in:
2024-10-12 16:23:49 -05:00
commit 148ad6efb9
67 changed files with 2884 additions and 0 deletions

17
main.js Executable file
View File

@ -0,0 +1,17 @@
var previousIndex = undefined;
function onClickScreenshot(index) {
if (previousIndex !== undefined) {
document.getElementById(`ss${previousIndex}`).className = 'screenshot';
}
if (previousIndex !== index) {
var element = document.getElementById(`ss${index}`);
element.className = 'screenshot screenshot--large';
element.scrollIntoView();
previousIndex = index;
} else {
previousIndex = undefined;
}
}