Add delay before closing window in doDocumentSelect()

This commit is contained in:
Kijin Sung 2026-01-28 20:51:29 +09:00
parent 09919944a7
commit bb6eeb926e

View file

@ -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);
}
/**