onload 메시지 출력 함수 추가
This commit is contained in:
parent
b94abe50cc
commit
36216fddb6
@ -589,3 +589,14 @@ function gfn_reserveReadItem(mngOrgCd, masterId) {
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
function gfn_showMessage(msg) {
|
||||
if(fn_isEmpty(msg)) return;
|
||||
else {
|
||||
// 딜레이 준 후, 표출
|
||||
setTimeout(function() {
|
||||
alert(msg);
|
||||
}, 500);
|
||||
}
|
||||
return;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user