From 3516e7c411e44ee86c79fdefa061067f9e9eed32 Mon Sep 17 00:00:00 2001 From: leebj Date: Fri, 9 Aug 2024 17:48:05 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A4=91=EB=B3=B5=20=ED=95=A8=EC=88=98=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/js/fims/cmmn/fims-cmmnUtil.js | 17 ----------------- 1 file changed, 17 deletions(-) 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요소 어트리뷰트(프로퍼티,이벤트) 등록