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') {
documentReady();
} else {
document.addEventListener('DOMContentLoaded', documentReady, false);
}
function documentReady() {
console.log('executed documentReady');
function kagiSummarize(url) {
console.log('got url', url);
return false;
}