mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-12-06 18:09:28 +00:00
8 lines
252 B
JavaScript
8 lines
252 B
JavaScript
/* copy code to clipboard */
|
|
function CopyToClipboard(element) {
|
|
element.style.filter = 'invert(1)';
|
|
navigator.clipboard.writeText(element.firstElementChild.innerHTML);
|
|
setTimeout(function() {
|
|
element.style.filter = 'invert(0)';
|
|
}, 100);
|
|
}
|