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/sandbox@5164 201d5d3c-b55e-5fd7-737f-ddc643e51545
14 lines
423 B
JavaScript
14 lines
423 B
JavaScript
/* 스킨 컬러셋 구해옴 */
|
|
function doGetSkinColorset(skin) {
|
|
var params = new Array();
|
|
params['skin'] = skin;
|
|
|
|
var response_tags = new Array('error','message','tpl');
|
|
exec_xml('communication', 'getCommunicationAdminColorset', params, doDisplaySkinColorset, response_tags);
|
|
}
|
|
|
|
function doDisplaySkinColorset(ret_obj) {
|
|
var tpl = ret_obj["tpl"];
|
|
jQuery('#communication_colorset').html(tpl);
|
|
}
|
|
|