A social RSS reader built on the AT Protocol. glean.at
glean atproto atmosphere rss feed social app
14
fork

Configure Feed

Select the types of activity you want to include in your feed.

Reload page on browser back button navigation

+6
+6
internal/tmpl/base.html
··· 310 310 applyTheme(); 311 311 applyShape(); 312 312 313 + // reload page when page restored from bfcache. 314 + // useful for reloading article read/unread status. 315 + window.addEventListener('pageshow', function(e) { 316 + if (e.persisted) location.reload(); 317 + }); 318 + 313 319 function closeAnnotate(el) { 314 320 var form = el.closest('.annotate-form'); 315 321 form.classList.add('hidden');