mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-26 22:59:57 +09:00
trackback 모듈에서 x 함수 제거 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7349 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c58b936e4f
commit
738e8f79d2
1 changed files with 6 additions and 4 deletions
|
|
@ -1,9 +1,11 @@
|
|||
function doCheckAll(bToggle) {
|
||||
var fo_obj = xGetElementById('fo_list');
|
||||
var fo_obj = jQuery('#fo_list')[0], el = null;
|
||||
if(typeof(bToggle) == "undefined") bToggle = false;
|
||||
for(var i=0;i<fo_obj.length;i++) {
|
||||
if(fo_obj[i].name == 'cart'){
|
||||
if( !fo_obj[i].checked || !bToggle) fo_obj[i].checked = true; else fo_obj[i].checked = false;
|
||||
for(var i=0; i<fo_obj.elements.length; i++) {
|
||||
el = fo_obj.elements[i];
|
||||
if(el.name == 'cart'){
|
||||
if(!el.checked || !bToggle) el.checked = true;
|
||||
else el.checked = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue