|
if (document.readyState && document.readyState !== 'loading') {
|
|
configureKagiButtons();
|
|
} else {
|
|
document.addEventListener('DOMNodeInserted', configureKagiButtons, false);
|
|
}
|
|
|
|
function configureKagiButtons() {
|
|
console.log('configuring kagi buttons');
|
|
}
|