mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 00:29:58 +09:00
trigger "change" after change module list on module finder
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9220 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
3f9d1d2779
commit
82c5ad88f3
1 changed files with 4 additions and 4 deletions
|
|
@ -533,7 +533,7 @@ $.fn.xeModuleFinder = function(){
|
||||||
if(!list.hasOwnProperty(x)) continue;
|
if(!list.hasOwnProperty(x)) continue;
|
||||||
$('<option />').attr('value', list[x].module_srl).text(list[x].browser_title).appendTo($mid_select);
|
$('<option />').attr('value', list[x].module_srl).text(list[x].browser_title).appendTo($mid_select);
|
||||||
}
|
}
|
||||||
$mid_select.prop('selectedIndex', 0);
|
$mid_select.prop('selectedIndex', 0).change();
|
||||||
});
|
});
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
|
|
@ -887,7 +887,7 @@ $('.multiLangEdit')
|
||||||
|
|
||||||
$suggest.trigger('hide');
|
$suggest.trigger('hide');
|
||||||
|
|
||||||
$this.closest('.multiLangEdit')
|
$this.closest('.multiLangEdit')
|
||||||
.find('input.vLang,textarea.vLang')
|
.find('input.vLang,textarea.vLang')
|
||||||
.eq(0).val($this.data('langkey')).end()
|
.eq(0).val($this.data('langkey')).end()
|
||||||
.eq(1).val($this.text()).end();
|
.eq(1).val($this.text()).end();
|
||||||
|
|
@ -996,7 +996,7 @@ function initLayer($layer) {
|
||||||
.find('a').text(mode==MODE_SAVE?cmd_edit:cmd_add).show().end();
|
.find('a').text(mode==MODE_SAVE?cmd_edit:cmd_add).show().end();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// process the submit button
|
// process the submit button
|
||||||
$submit = $layer.find('input[type=submit]')
|
$submit = $layer.find('input[type=submit]')
|
||||||
.click(function(){
|
.click(function(){
|
||||||
|
|
@ -1043,7 +1043,7 @@ function extractList(list) {
|
||||||
|
|
||||||
obj[item.name][item.lang_code] = item.value;
|
obj[item.name][item.lang_code] = item.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
return obj;
|
return obj;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue