|
|
|
@ -2,9 +2,6 @@
|
|
|
|
|
* 문자열 클립보드 복사
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
function clipboardCopy(string){
|
|
|
|
|
if(window.isSecureContext){
|
|
|
|
|
navigator.clipboard.writeText(string);
|
|
|
|
|
} else {
|
|
|
|
|
var textArea = document.createElement("textarea");
|
|
|
|
|
textArea.style.position = "fixed";
|
|
|
|
|
textArea.value = string;
|
|
|
|
@ -14,7 +11,6 @@ function clipboardCopy(string){
|
|
|
|
|
document.execCommand('copy');
|
|
|
|
|
document.body.removeChild(textArea);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
* 사전 정의 요소 클립보드 복사
|
|
|
|
|