mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-11 23:01:41 +09:00
fix typo
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7350 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
738e8f79d2
commit
32b90dca57
1 changed files with 4 additions and 4 deletions
|
|
@ -46,7 +46,7 @@ function doDisplaySkinColorset(sel, colorset) {
|
||||||
|
|
||||||
/* 서버에서 받아온 컬러셋을 표시 */
|
/* 서버에서 받아온 컬러셋을 표시 */
|
||||||
function completeGetSkinColorset(ret_obj, response_tags, params, fo_obj) {
|
function completeGetSkinColorset(ret_obj, response_tags, params, fo_obj) {
|
||||||
var sel = xGetElementById("fo_widget").widget_colorset;
|
var sel = jQuery("#fo_widget")[0].widget_colorset;
|
||||||
var length = sel.options.length;
|
var length = sel.options.length;
|
||||||
var selected_colorset = params["colorset"];
|
var selected_colorset = params["colorset"];
|
||||||
for(var i=0;i<length;i++) sel.remove(0);
|
for(var i=0;i<length;i++) sel.remove(0);
|
||||||
|
|
@ -64,7 +64,7 @@ function completeGetSkinColorset(ret_obj, response_tags, params, fo_obj) {
|
||||||
|
|
||||||
sel.selectedIndex = selected_index;
|
sel.selectedIndex = selected_index;
|
||||||
|
|
||||||
xGetElementById("colorset_area").style.display = "block";
|
jQuery("#colorset_area").show();
|
||||||
setFixedPopupSize();
|
setFixedPopupSize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -267,8 +267,8 @@ function midRemove(id) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function syncMid(id) {
|
function syncMid(id) {
|
||||||
var sel_obj = jQuery('#_'+id);
|
var sel_obj = jQuery('#_'+id)[0];
|
||||||
var valueArray = new Array();
|
var valueArray = [];
|
||||||
for(var i=0;i<sel_obj.options.length;i++) valueArray[valueArray.length] = sel_obj.options[i].value;
|
for(var i=0;i<sel_obj.options.length;i++) valueArray[valueArray.length] = sel_obj.options[i].value;
|
||||||
jQuery('#'+id).val( valueArray.join(',') );
|
jQuery('#'+id).val( valueArray.join(',') );
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue