mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 23:29:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@948 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e5e8e3deff
commit
516ef7e0f6
8 changed files with 59 additions and 12 deletions
|
|
@ -89,10 +89,10 @@ function completeSendMessage(ret_obj) {
|
|||
}
|
||||
|
||||
/* 쪽지 모두 선택 */
|
||||
function doCheckAll(obj) {
|
||||
var fo_obj = xGetElementById("fo_message_list");
|
||||
function doCheckAll(obj, fo_id) {
|
||||
var fo_obj = xGetElementById(fo_id);
|
||||
for(var i=0; i<fo_obj.length; i++) {
|
||||
if(fo_obj[i].type == "checkbox" && fo_obj[i].name == "message_srl_list" ) fo_obj[i].checked = obj.checked;
|
||||
if(fo_obj[i].type == "checkbox" && fo_obj[i] != obj) fo_obj[i].checked = obj.checked;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -157,3 +157,9 @@ function completeDeleteFriendGroup(ret_obj) {
|
|||
function doRenameFriendGroup(friend_group_srl) {
|
||||
popopen("./?module=member&act=dispMemberAddFriendGroup&friend_group_srl="+friend_group_srl);
|
||||
}
|
||||
|
||||
/* 친구 그룹 이동 */
|
||||
function doMoveFriend() {
|
||||
var fo_obj = xGetElementById('fo_friend_list');
|
||||
procFilter(fo_obj, move_friend);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue