diff --git a/static/script.js b/static/script.js index 33f1802..868d12b 100644 --- a/static/script.js +++ b/static/script.js @@ -7,4 +7,18 @@ if (document.readyState && document.readyState !== 'loading') { function configureSummarizeButtons() { var buttons = document.querySelectorAll('.kagi-summary a.btn'); console.log(`configuring ${buttons.length} buttons`); + for (var i = 0; i < buttons.length; i++) { + let button = buttons[i]; + let url = button.dataset.url; + button.addEventListener('click', function(e) { + e.preventDefault(); + e.stopPropagation(); + + if (url) { + console.log(url); + } else { + console.log('no url'); + } + }); + } }