mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-21 20:29:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1496 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
87b16614a5
commit
ea6d983ef6
13 changed files with 39 additions and 39 deletions
|
|
@ -7,7 +7,7 @@ function completeInsert(ret_obj, response_tags, args, fo_obj) {
|
|||
alert(message);
|
||||
|
||||
if(redirect_url) location.href = redirect_url;
|
||||
else location.href = location.href.setQuery('act','');
|
||||
else location.href = current_url.setQuery('act','');
|
||||
}
|
||||
|
||||
/* 정보 수정 */
|
||||
|
|
@ -17,7 +17,7 @@ function completeModify(ret_obj, response_tags, args, fo_obj) {
|
|||
|
||||
alert(message);
|
||||
|
||||
location.href = location.href.setQuery('act','dispMemberInfo');
|
||||
location.href = current_url.setQuery('act','dispMemberInfo');
|
||||
}
|
||||
|
||||
/* 이미지 업로드 */
|
||||
|
|
@ -77,13 +77,13 @@ function completeLogin(ret_obj, response_tags, params, fo_obj) {
|
|||
xSetCookie('user_id', fo_obj.user_id.value, expire);
|
||||
}
|
||||
|
||||
var url = location.href.setQuery('act','');
|
||||
location.href = location.href.setQuery('act','');
|
||||
var url = current_url.setQuery('act','');
|
||||
location.href = current_url.setQuery('act','');
|
||||
}
|
||||
|
||||
/* 로그아웃 후 */
|
||||
function completeLogout(ret_obj) {
|
||||
location.href = location.href.setQuery('act','');
|
||||
location.href = current_url.setQuery('act','');
|
||||
}
|
||||
|
||||
/* 이미지 이름, 마크 삭제 */
|
||||
|
|
@ -125,7 +125,7 @@ function doDeleteMessage(message_srl) {
|
|||
|
||||
function completeDeleteMessage(ret_obj) {
|
||||
alert(ret_obj['message']);
|
||||
location.href = location.href.setQuery('message_srl','');
|
||||
location.href = current_url.setQuery('message_srl','');
|
||||
}
|
||||
|
||||
/* 개별 쪽지 보관 */
|
||||
|
|
@ -139,7 +139,7 @@ function doStoreMessage(message_srl) {
|
|||
|
||||
function completeStoreMessage(ret_obj) {
|
||||
alert(ret_obj['message']);
|
||||
location.href = location.href.setQuery('message_srl','');
|
||||
location.href = current_url.setQuery('message_srl','');
|
||||
}
|
||||
|
||||
/* 친구 추가 후 */
|
||||
|
|
@ -168,7 +168,7 @@ function doDeleteFriendGroup(friend_group_srl) {
|
|||
|
||||
function completeDeleteFriendGroup(ret_obj) {
|
||||
alert(ret_obj['message']);
|
||||
location.href = location.href.setQuery('friend_group_srl','');
|
||||
location.href = current_url.setQuery('friend_group_srl','');
|
||||
}
|
||||
|
||||
/* 친구 그룹의 이름 변경 */
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ function completeInsert(ret_obj) {
|
|||
|
||||
alert(message);
|
||||
|
||||
var url = location.href.setQuery('act','dispMemberAdminInfo').setQuery('member_srl',member_srl);
|
||||
var url = current_url.setQuery('act','dispMemberAdminInfo').setQuery('member_srl',member_srl);
|
||||
if(page) url = url.setQuery('page', page);
|
||||
|
||||
location.href = url;
|
||||
|
|
@ -21,7 +21,7 @@ function completeDelete(ret_obj) {
|
|||
|
||||
alert(message);
|
||||
|
||||
var url = location.href.setQuery('act','dispMemberAdminList');
|
||||
var url = current_url.setQuery('act','dispMemberAdminList');
|
||||
|
||||
location.href = url;
|
||||
}
|
||||
|
|
@ -34,7 +34,7 @@ function completeInsertGroup(ret_obj) {
|
|||
|
||||
alert(message);
|
||||
|
||||
var url = location.href.setQuery('act','dispMemberAdminGroupList');
|
||||
var url = current_url.setQuery('act','dispMemberAdminGroupList');
|
||||
|
||||
location.href = url;
|
||||
}
|
||||
|
|
@ -51,7 +51,7 @@ function doUpdateGroup(group_srl, mode, message) {
|
|||
|
||||
function completeUpdateGroup(ret_obj) {
|
||||
var page = ret_obj['page'];
|
||||
var url = location.href.setQuery('act','dispMemberAdminGroupList');
|
||||
var url = current_url.setQuery('act','dispMemberAdminGroupList');
|
||||
location.href = url;
|
||||
}
|
||||
|
||||
|
|
@ -64,7 +64,7 @@ function completeInsertDeniedID(ret_obj) {
|
|||
|
||||
alert(message);
|
||||
|
||||
var url = location.href.setQuery('act','dispMemberAdminDeniedIDList');
|
||||
var url = current_url.setQuery('act','dispMemberAdminDeniedIDList');
|
||||
location.href = url;
|
||||
}
|
||||
|
||||
|
|
@ -96,7 +96,7 @@ function completeUpdateJoinForm(ret_obj) {
|
|||
|
||||
alert(message);
|
||||
|
||||
var url = location.href.setQuery('act','dispMemberAdminJoinFormList');
|
||||
var url = current_url.setQuery('act','dispMemberAdminJoinFormList');
|
||||
|
||||
location.href = url;
|
||||
}
|
||||
|
|
@ -109,7 +109,7 @@ function completeInsertJoinForm(ret_obj) {
|
|||
|
||||
alert(message);
|
||||
|
||||
var url = location.href.setQuery('act','dispMemberAdminJoinFormList');
|
||||
var url = current_url.setQuery('act','dispMemberAdminJoinFormList');
|
||||
|
||||
location.href = url;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue