mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-24 05:39:58 +09:00
20 lines
512 B
JavaScript
20 lines
512 B
JavaScript
/* 사용자 추가 */
|
|
function completeInsert(ret_obj, response_tags, args, fo_obj) {
|
|
var error = ret_obj['error'];
|
|
var message = ret_obj['message'];
|
|
|
|
alert(message);
|
|
|
|
location.href = location.href.setQuery('act','');
|
|
}
|
|
|
|
/* 로그인 후 */
|
|
function completeLogin(ret_obj) {
|
|
var url = location.href.setQuery('act','');
|
|
location.href = location.href.setQuery('act','');
|
|
}
|
|
|
|
/* 로그아웃 후 */
|
|
function completeLogout(ret_obj) {
|
|
location.href = location.href.setQuery('act','');
|
|
}
|