1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-12-22 12:50:36 +01:00

Allow clicks in url change input

Fixes #600
This commit is contained in:
kkapsner 2022-03-17 22:44:52 +01:00
parent bfa355b58d
commit d100932236

View File

@ -225,6 +225,9 @@
urlCell.removeChild(input); urlCell.removeChild(input);
urlCell.textContent = entry.url; urlCell.textContent = entry.url;
}); });
input.addEventListener("click", function(event){
event.stopPropagation();
});
}); });
urlCell.textContent = entry.url; urlCell.textContent = entry.url;
row.appendChild(urlCell); row.appendChild(urlCell);