git-svn-id: http://xe-core.googlecode.com/svn/trunk@1717 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-21 05:28:09 +00:00
parent fcb4fe15d6
commit bf23eca99d
48 changed files with 719 additions and 530 deletions

View file

@ -198,3 +198,11 @@ function doMoveFriend() {
var fo_obj = xGetElementById('fo_friend_list');
procFilter(fo_obj, move_friend);
}
/* 친구 그룹 선택 */
function doJumpFriendGroup() {
var sel_obj = xGetElementById('jumpMenu');
var sel_idx = sel_obj.selectedIndex;
var sel_val = sel_obj.options[sel_idx].value;
location.href = current_url.setQuery('friend_group_srl', sel_val);
}