You've already forked KernelSU-Next
mirror of
https://github.com/KernelSU-Next/KernelSU-Next.git
synced 2025-08-27 23:46:34 +00:00
* add README_TW * Update README_CN.md * add Simplified Chinese for website add Simplified Chinese for website fix some mistakes in README_CN
7 lines
256 B
JavaScript
7 lines
256 B
JavaScript
function copyToClipboard(button) {
|
|
var code = button.previousElementSibling.textContent;
|
|
navigator.clipboard.writeText(code).then(() => {
|
|
button.textContent = "Copied!";
|
|
setTimeout(() => button.textContent = "Copy", 2000);
|
|
});
|
|
} |