Files
cjsatnarine.space/blog/static/window.js
CJSatnarine 6f5a806d24 aughhhh
2025-03-15 23:14:24 -04:00

11 lines
296 B
JavaScript

// 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);
});