mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Add delay before closing window in doDocumentSelect()
This commit is contained in:
parent
09919944a7
commit
bb6eeb926e
1 changed files with 5 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue