17523934 * modules/a* ~ d* x.js 교체

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5164 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2008-12-23 03:24:06 +00:00
parent 635d54bf6f
commit 75c211f98e
28 changed files with 83 additions and 142 deletions

View file

@ -80,15 +80,11 @@ function doChangeCategory(fo_obj) {
/* 일괄 설정 */
function doCartSetup(act_type) {
var fo_obj = xGetElementById('fo_list');
var module_srl = new Array();
if(typeof(fo_obj.cart.length)=='undefined') {
if(fo_obj.cart.checked) module_srl[module_srl.length] = fo_obj.cart.value;
} else {
for(var i=0;i<fo_obj.cart.length;i++) {
if(fo_obj.cart[i].checked) module_srl[module_srl.length] = fo_obj.cart[i].value;
}
}
jQuery('#fo_list input[name=cart]:checked').each(function() {
module_srl[module_srl.length] = jQuery(this).val();
});
if(module_srl.length<1) return;
var url = current_url.setQuery('act',act_type).setQuery('module_srl','').setQuery('module_srls',module_srl.join(','));