forked from Programming.Dev/p.d-legal
25 lines
590 B
JavaScript
25 lines
590 B
JavaScript
(function () {
|
|
function select(element) {
|
|
const selection = window.getSelection();
|
|
|
|
const range = document.createRange();
|
|
range.selectNodeContents(element);
|
|
|
|
selection.removeAllRanges();
|
|
selection.addRange(range);
|
|
}
|
|
|
|
document.querySelectorAll("pre code").forEach(code => {
|
|
code.addEventListener("click", function (event) {
|
|
if (window.getSelection().toString()) {
|
|
return;
|
|
}
|
|
select(code.parentElement);
|
|
|
|
if (navigator.clipboard) {
|
|
navigator.clipboard.writeText(code.parentElement.textContent);
|
|
}
|
|
});
|
|
});
|
|
})();
|