납부자번호 복사 함수 수정

main
이범준 4 months ago
parent bd212b3250
commit 97b2685625

@ -379,19 +379,7 @@ $(document).ready(function() {
}
if(cur != null){
if(window.isSecureContext){
navigator.clipboard.writeText(cur.RTPYR_NO);
} else {
var textArea = document.createElement("textarea");
textArea.style.position = "fixed";
textArea.value = cur.RTPYR_NO;
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
document.execCommand('copy');
document.body.removeChild(textArea);
}
clipboardCopy(cur.RTPYR_NO);
$("#toastText--${pageName}").html("납부자번호가 복사되었습니다.");
$P.toast.show();

@ -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파일 미리보기
**************************************************************************/

Loading…
Cancel
Save