mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 07:09:56 +09:00
#450. 애드온에서 활성화 대상 모듈 선택 기능 추가. 애드온에서 권한 대상을 선택하는 것은 불필요하다고 판단. 관련하여 에디터 컴포넌트에서도 대상 모듈을 선택할 수 있도록 기능 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4123 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
fb08c61fce
commit
1bbc3c1b9c
29 changed files with 184 additions and 48 deletions
|
|
@ -34,3 +34,11 @@ function completeUpdate(ret_obj) {
|
|||
function doSetupComponent(component_name) {
|
||||
popopen("./?module=editor&act=dispEditorAdminSetupComponent&component_name="+component_name, "SetupComponent");
|
||||
}
|
||||
|
||||
function toggleSectionCheckBox(obj, id) {
|
||||
var box_list = xGetElementsByTagName('input', xGetElementById(id));
|
||||
if(typeof(box_list.length)=='undefined') return;
|
||||
for(var i in box_list) {
|
||||
box_list[i].checked = obj.checked;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue