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-testthe resulting validation function will be
$('a-test.continue') !== truethis 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, wheresomethingis a property ofname)