mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
게시글/댓글 신고 취소시 한개의 신고만 있을때 동작하지 않던 문제 해결
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3792 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
0c946e0b15
commit
117066bfb8
2 changed files with 12 additions and 4 deletions
|
|
@ -11,8 +11,12 @@ function doCheckAll(bToggle) {
|
|||
function doCancelDeclare() {
|
||||
var fo_obj = xGetElementById('fo_list');
|
||||
var comment_srl = new Array();
|
||||
for(var i=0;i<fo_obj.cart.length;i++) {
|
||||
if(fo_obj.cart[i].checked) comment_srl[comment_srl.length] = fo_obj.cart[i].value;
|
||||
if(fo_obj.cart.length) {
|
||||
for(var i=0;i<fo_obj.cart.length;i++) {
|
||||
if(fo_obj.cart[i].checked) comment_srl[comment_srl.length] = fo_obj.cart[i].value;
|
||||
}
|
||||
} else {
|
||||
if(fo_obj.cart.checked) comment_srl[comment_srl.length] = fo_obj.cart.value;
|
||||
}
|
||||
if(comment_srl.length<1) return;
|
||||
|
||||
|
|
|
|||
|
|
@ -80,8 +80,12 @@ function completeGetCategoryFromModules(ret_obj, response_tags) {
|
|||
function doCancelDeclare() {
|
||||
var fo_obj = xGetElementById('fo_list');
|
||||
var document_srl = new Array();
|
||||
for(var i=0;i<fo_obj.cart.length;i++) {
|
||||
if(fo_obj.cart[i].checked) document_srl[document_srl.length] = fo_obj.cart[i].value;
|
||||
if(fo_obj.cart.length) {
|
||||
for(var i=0;i<fo_obj.cart.length;i++) {
|
||||
if(fo_obj.cart[i].checked) document_srl[document_srl.length] = fo_obj.cart[i].value;
|
||||
}
|
||||
} else {
|
||||
if(fo_obj.cart.checked) document_srl[document_srl.length] = fo_obj.cart.value;
|
||||
}
|
||||
if(document_srl.length<1) return;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue