클립보드 복사 방식 수정

master
이범준 3 months ago
parent 27223257c8
commit d0fd3034d8

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

Loading…
Cancel
Save