This commit is contained in:
Rudis Muiznieks 2023-09-25 13:42:44 -05:00
parent a31e9d39f0
commit 85cb5418a0
Signed by: rudism
GPG Key ID: CABF2F86EF7884F9
1 changed files with 3 additions and 8 deletions

View File

@ -1,9 +1,4 @@
if (document.readyState && document.readyState !== 'loading') { function kagiSummarize(url) {
documentReady(); console.log('got url', url);
} else { return false;
document.addEventListener('DOMContentLoaded', documentReady, false);
}
function documentReady() {
console.log('executed documentReady');
} }