mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Fix #1304 JS error when no option has init="true" attribute
This commit is contained in:
parent
69c25be996
commit
c35d739443
1 changed files with 3 additions and 0 deletions
|
|
@ -55,6 +55,9 @@ xe.MultiOrderManager = xe.createApp("MultiOrderManager", {
|
|||
|
||||
var targets = [];
|
||||
for(var i in values){
|
||||
if(values[i] === '') {
|
||||
continue;
|
||||
}
|
||||
var target = this.$showObj.find('>option[value='+values[i]+']').get(0);
|
||||
if (target != undefined) targets.push(target);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue