|
|
|
@ -65,23 +65,6 @@ function setCurrentRow(et){
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
* 클립보드 복사
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
function clipboardCopy(string){
|
|
|
|
|
if(window.isSecureContext){
|
|
|
|
|
navigator.clipboard.writeText(string);
|
|
|
|
|
} else {
|
|
|
|
|
var textArea = document.createElement("textarea");
|
|
|
|
|
textArea.style.position = "fixed";
|
|
|
|
|
textArea.value = string;
|
|
|
|
|
document.body.appendChild(textArea);
|
|
|
|
|
textArea.focus();
|
|
|
|
|
textArea.select();
|
|
|
|
|
document.execCommand('copy');
|
|
|
|
|
document.body.removeChild(textArea);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
* HTML요소 어트리뷰트(프로퍼티,이벤트) 등록
|
|
|
|
|