mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11742 201d5d3c-b55e-5fd7-737f-ddc643e51545
24 lines
544 B
JavaScript
24 lines
544 B
JavaScript
/* 멤버 스킨 컬러셋 구해옴 */
|
|
function doGetSkinColorset(skin) {
|
|
var params = {skin:skin};
|
|
var response_tags = ['error','message','tpl'];
|
|
|
|
function on_complete(ret) {
|
|
jQuery('#colorset').show();
|
|
var $colorset = jQuery('#member_colorset'), old_h, new_h;
|
|
|
|
old_h = $colorset.height();
|
|
$colorset.html(ret.tpl);
|
|
new_h = $colorset.height();
|
|
|
|
try{ fixAdminLayoutFooter(new_h - old_h) }catch(e){ };
|
|
}
|
|
|
|
exec_xml(
|
|
'member',
|
|
'getMemberAdminColorset',
|
|
{skin:skin},
|
|
on_complete,
|
|
['error','message','tpl']
|
|
);
|
|
}
|