big website change
Some checks failed
Build / deploy (push) Has been cancelled

This commit is contained in:
CJSatnarine
2026-01-18 03:23:11 -05:00
parent b216402cfa
commit 7b781d895e
13 changed files with 126 additions and 24 deletions

View File

@@ -0,0 +1,10 @@
// Refreshes the page when the browser is resized.
window.addEventListener('resize', function(event) {
if (window.RT) {
clearTimeout(window.RT);
}
window.RT = setTimeout(function() {
window.location.reload(false); /* false to get page from cache */
}, 200);
});