RobotApp/RobotApp.Client/wwwroot/js/app.js
Đăng Nguyễn 5c1851e92f update
2025-12-31 14:03:47 +07:00

10 lines
351 B
JavaScript

window.copyToClipboardFallback = function (text) {
const textarea = document.createElement('textarea');
textarea.value = text;
textarea.style.position = 'fixed';
textarea.style.opacity = '0';
document.body.appendChild(textarea);
textarea.select();
document.execCommand('copy');
document.body.removeChild(textarea);
}