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

This commit is contained in:
zero 2007-03-30 09:17:09 +00:00
parent abdb0eec17
commit 10be4c845a
10 changed files with 51 additions and 22 deletions

View file

@ -17,3 +17,13 @@ function completeInsert(ret_obj, response_tags, args, fo_obj) {
if(url.length>0) location.href="./?"+url.join("&");
else location.href="./";
}
/* 로그인 후 */
function completeLogin(ret_obj) {
location.href = location.href.setQuery('act','');
}
/* 로그아웃 후 */
function completeLogout(ret_obj) {
location.href = location.href.setQuery('act','');
}