diff --git a/src/main/webapp/resources/js/fims/cmmn/fims-cmmnUtil.js b/src/main/webapp/resources/js/fims/cmmn/fims-cmmnUtil.js index d29de59f..cd2ff6ce 100644 --- a/src/main/webapp/resources/js/fims/cmmn/fims-cmmnUtil.js +++ b/src/main/webapp/resources/js/fims/cmmn/fims-cmmnUtil.js @@ -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요소 어트리뷰트(프로퍼티,이벤트) 등록