The 'option' and 'editableOption' arguments can now specify a 'defaultIndex' to populate, instead of using the first in the provided list.

This commit is contained in:
n1474335 2018-12-25 19:02:05 +00:00
parent 8c3569ea63
commit bf24547202
3 changed files with 7 additions and 3 deletions

View file

@ -181,6 +181,7 @@ class Operation {
if (ing.hint) conf.hint = ing.hint;
if (ing.disabled) conf.disabled = ing.disabled;
if (ing.target) conf.target = ing.target;
if (ing.defaultIndex) conf.defaultIndex = ing.defaultIndex;
return conf;
});
}