mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
#18598637 : fixed javascript errors due to the change of xmljsfilter
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7140 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2fc7a17b06
commit
0c9c0fd86b
1 changed files with 11 additions and 10 deletions
|
|
@ -9,11 +9,11 @@ function completeInstalled(ret_obj) {
|
|||
/**
|
||||
* @brief FTP 정보 입력
|
||||
**/
|
||||
function doInstallFTPInfo(fo_obj) {
|
||||
var oFilter = new XmlJsFilter(fo_obj, "install", "procInstallFTP", completeInstallFTPInfo);
|
||||
oFilter.addResponseItem("error");
|
||||
oFilter.addResponseItem("message");
|
||||
return oFilter.proc();
|
||||
function doInstallFTPInfo(form) {
|
||||
var params={}, data=jQuery(form).serializeArray();
|
||||
jQuery.each(data, function(i, field){ params[field.name] = field.value });
|
||||
exec_xml('install', 'procInstallFTP', params, completeInstallFTPInfo, ['error', 'message'], params, form);
|
||||
return false;
|
||||
}
|
||||
|
||||
function completeInstallFTPInfo(ret_obj) {
|
||||
|
|
@ -21,11 +21,12 @@ function completeInstallFTPInfo(ret_obj) {
|
|||
}
|
||||
|
||||
function doCheckFTPInfo() {
|
||||
var fo_obj = jQuery("#ftp_form").get(0);
|
||||
var oFilter = new XmlJsFilter(fo_obj, "install", "procInstallCheckFTP", completeInstallCheckFtpInfo);
|
||||
oFilter.addResponseItem("error");
|
||||
oFilter.addResponseItem("message");
|
||||
return oFilter.proc();
|
||||
var form = jQuery("#ftp_form").get(0);
|
||||
var params={}, data=jQuery(form).serializeArray();
|
||||
jQuery.each(data, function(i, field){ params[field.name] = field.value });
|
||||
|
||||
exec_xml('install', 'procInstallCheckFTP', params, completeInstallCheckFtpInfo, ['error', 'message'], params, form);
|
||||
return false;
|
||||
}
|
||||
|
||||
function completeInstallCheckFtpInfo(ret_obj) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue