|
|
|
@ -1,3 +1,21 @@
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
* 클립보드 복사
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
* pdf파일 미리보기 창
|
|
|
|
|
**************************************************************************/
|
|
|
|
|