KartablePro/popup.js
2024-01-28 14:31:07 +01:00

13 lines
484 B
JavaScript

// popup.js
document.addEventListener('DOMContentLoaded', function () {
var redirectButton1 = document.getElementById('redirectButton1');
redirectButton1.addEventListener('click', function () {
window.open('https://nohamr.github.io', '_blank');
});
var redirectButton2 = document.getElementById('redirectButton2');
redirectButton2.addEventListener('click', function () {
window.open('https://github.com/NohamR/KartablePro', '_blank');
});
});