Change FormWidget#tabStops from a comma delimited string to an array.
Fixes a problem when you set tabStops to "" rather than "focusNode" and you start getting console errors about null references. Problem caused because "".split(/, */) strangely (but according to spec) returns [""] instead of [].
Change FormWidget#tabStops from a comma delimited string to an array.
Fixes a problem when you set
tabStops
to""
rather than"focusNode"
and you start getting console errors about null references. Problem caused because"".split(/, */)
strangely (but according to spec) returns[""]
instead of[]
.