mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9084 201d5d3c-b55e-5fd7-737f-ddc643e51545
17 lines
586 B
JavaScript
17 lines
586 B
JavaScript
/**
|
|
* @author NHN (developers@xpressengine.com)
|
|
* @version 0.1
|
|
* @brief 에디터 관리자 페이지용 스크립트
|
|
**/
|
|
|
|
function doSetupComponent(component_name) {
|
|
popopen(request_uri.setQuery('module','editor').setQuery('act','dispEditorAdminSetupComponent').setQuery('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;
|
|
}
|
|
}
|