diff --git a/src/main/webapp/js/nlib.js b/src/main/webapp/js/nlib.js index eb45c087..3c15d257 100644 --- a/src/main/webapp/js/nlib.js +++ b/src/main/webapp/js/nlib.js @@ -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; +} \ No newline at end of file