given form name a-test
the resulting validation function will be $('a-test.continue') !== true
this will cause a type reference error and break the form for amber-visit
solution:
form name should be validated such that it will work when referencing an object properties (e.g. name.something, where something is a property of name)
given form name
a-test
the resulting validation function will be$('a-test.continue') !== true
this will cause a type reference error and break the form for amber-visitsolution: form name should be validated such that it will work when referencing an object properties (e.g.
name.something
, wheresomething
is a property ofname
)