rollback r10159, r10249, r10268

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10290 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2012-03-02 09:18:11 +00:00
parent a7f4244820
commit 24a48d68fc
2 changed files with 0 additions and 19 deletions

View file

@ -37,7 +37,6 @@ function completeSearchKrZip(ret_obj, response_tags, callback_args, fo_obj) {
$zone_search.hide();
$zone_list.show();
filterWait[fo_obj.id] = '';
}
function doHideKrZipList(form, column_name) {

View file

@ -174,7 +174,6 @@ function xml2json(xml, tab, ignoreAttrib) {
}
}
var filterWait = new Array();
(function($){
/**
* @brief exec_xml
@ -240,7 +239,6 @@ $.exec_xml = window.exec_xml = function(module, act, params, callback_func, resp
if(!resp_xml) {
alert(_xhr.responseText);
filterWait[fo_obj.id] = '';
return null;
}
@ -268,7 +266,6 @@ $.exec_xml = window.exec_xml = function(module, act, params, callback_func, resp
}
alert( (ret['message']||'An unknown error occured while loading ['+module+'.'+act+']').replace(/\\n/g, '\n') );
filterWait[fo_obj.id] = '';
return null;
}
@ -283,20 +280,6 @@ $.exec_xml = window.exec_xml = function(module, act, params, callback_func, resp
// 모든 xml데이터는 POST방식으로 전송. try-catch문으로 오류 발생시 대처
try {
if(fo_obj)
{
if(!fo_obj.id)
{
fo_obj.id = new Date().getTime();
}
if(filterWait[fo_obj.id])
{
return false;
}
filterWait[fo_obj.id] = true;
}
$.ajax({
url : xml_path,
type : 'POST',
@ -306,7 +289,6 @@ $.exec_xml = window.exec_xml = function(module, act, params, callback_func, resp
beforeSend : function(xhr){ _xhr = xhr; },
success : onsuccess,
error : function(xhr, textStatus) {
filterWait[fo_obj.id] = '';
waiting_obj.css('display', 'none');
var msg = '';