중복 함수 제거

main
이범준 3 months ago
parent 6ef8111769
commit 3516e7c411

@ -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요소 어트리뷰트(프로퍼티,이벤트) 등록 * HTML요소 어트리뷰트(프로퍼티,이벤트) 등록

Loading…
Cancel
Save