freshrss-kagi-summarizer/static/script.js

12 lines
335 B
JavaScript
Raw Normal View History

2023-09-25 14:03:51 -05:00
if (document.readyState && document.readyState !== 'loading') {
2023-09-25 14:44:28 -05:00
configureSummarizeButtons();
2023-09-25 14:03:51 -05:00
} else {
2023-09-25 14:44:28 -05:00
document.addEventListener('DOMContentLoaded', configureSummarizeButtons, false);
2023-09-25 14:03:51 -05:00
}
2023-09-25 14:44:28 -05:00
function configureSummarizeButtons() {
2023-09-25 14:57:58 -05:00
$('#global').on('click', '.kagi-summary a.btn', function() {
console.log(this.dataset.url);
});
2023-09-25 13:30:27 -05:00
}