mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
모듈선택기의 js 오류 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5332 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f78e151107
commit
a5fb587144
1 changed files with 2 additions and 1 deletions
|
|
@ -61,11 +61,12 @@ function completeCopyModule() {
|
|||
function insertModule(id, module_srl, mid, browser_title, multi_select) {
|
||||
if(typeof(multi_select)=='undefined') multi_select = true;
|
||||
if(!window.opener) window.close();
|
||||
if(typeof(opener.insertSelectedModule)=='undefined') return;
|
||||
|
||||
if(multi_select) {
|
||||
if(typeof(opener.insertSelectedModules)=='undefined') return;
|
||||
opener.insertSelectedModules(id, module_srl, mid, browser_title);
|
||||
} else {
|
||||
if(typeof(opener.insertSelectedModule)=='undefined') return;
|
||||
opener.insertSelectedModule(id, module_srl, mid, browser_title);
|
||||
window.close();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue