freshrss-kagi-summarizer/static/script.js

10 lines
240 B
JavaScript
Raw Normal View History

2023-09-25 13:30:27 -05:00
if (document.readyState && document.readyState !== 'loading') {
documentReady();
} else {
document.addEventListener('DOMContentLoaded', documentReady, false);
}
function documentReady() {
console.log('executed documentReady');
}