mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-26 14:49:56 +09:00
삭제
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
commit
8326004cb2
2773 changed files with 91485 additions and 0 deletions
29
modules/ttimporter/tpl/js/importer_admin.js
Normal file
29
modules/ttimporter/tpl/js/importer_admin.js
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
/**
|
||||
* @file modules/ttimporter/js/importer_admin.js
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief importer에서 사용하는 javascript
|
||||
**/
|
||||
|
||||
/* Step Complete Import */
|
||||
function completeImport(ret_obj) {
|
||||
var message = ret_obj['message'];
|
||||
var is_finished = ret_obj['is_finished'];
|
||||
var position = ret_obj['position'];
|
||||
|
||||
xGetElementById("import_status").style.display = "block";
|
||||
|
||||
if(is_finished=='Y') {
|
||||
alert(ret_obj["message"]);
|
||||
location.href = location.href;
|
||||
} else {
|
||||
var fo_obj = xGetElementById('fo_import');
|
||||
fo_obj.position.value = position;
|
||||
xInnerHtml('import_status', message);
|
||||
procFilter(fo_obj, import_tt);
|
||||
}
|
||||
}
|
||||
|
||||
function doManualProcess() {
|
||||
var fo_obj = xGetElementById('fo_import');
|
||||
procFilter(fo_obj, import_tt);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue