Files
cjsatnarine.space/blog/public/window.js
2025-03-15 23:42:06 -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);
});