From bb6eeb926ecc9ffa6eac48ef0de433fba3810255 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Wed, 28 Jan 2026 20:51:29 +0900 Subject: [PATCH] Add delay before closing window in doDocumentSelect() --- common/js/common.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/js/common.js b/common/js/common.js index 7504be4ad..2d8f3c34e 100644 --- a/common/js/common.js +++ b/common/js/common.js @@ -1604,7 +1604,11 @@ function doDocumentSelect(document_srl, module) { } else { opener.location.href = opener.current_url.setQuery('act', 'dispBoardWrite').setQuery('document_srl', document_srl); } - window.close(); + + // 딜레이 후 창 닫기 + setTimeout(function() { + window.close(); + }, 100); } /**