mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@379 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
6a494850da
commit
af7dc3565d
15 changed files with 204 additions and 12 deletions
26
modules/module/tpl.admin/js/admin.js
Normal file
26
modules/module/tpl.admin/js/admin.js
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/**
|
||||
* @file : modules/module/js/admin.js
|
||||
* @author : zero <zero@nzeo.com>
|
||||
* @desc : module 모듈의 관리자용 javascript
|
||||
**/
|
||||
|
||||
/* 카테고리 관련 작업들 */
|
||||
function doUpdateCategory(module_category_srl, mode, message) {
|
||||
if(typeof(message)!='undefined'&&!confirm(message)) return;
|
||||
|
||||
var fo_obj = xGetElementById('fo_category_info');
|
||||
fo_obj.module_category_srl.value = module_category_srl;
|
||||
fo_obj.mode.value = mode;
|
||||
|
||||
procFilter(fo_obj, update_category);
|
||||
}
|
||||
|
||||
/* 카테고리 정보 수정 후 */
|
||||
function completeUpdateCategory(ret_obj) {
|
||||
var error = ret_obj['error'];
|
||||
var message = ret_obj['message'];
|
||||
alert(message);
|
||||
|
||||
var url = "./?module=admin&mo=module&act=dispCategory";
|
||||
location.href = url;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue