StratusForms
StratusForms copied to clipboard
forgot "typeof"
In line 715 of stratus-forms-1.55.js you have this line:
if (repeatableArray[index].StratusFormsParent != "undefined") {
Pretty clearly it was meant to be this:
if (repeatableArray[index].StratusFormsParent !== undefined) { // note the addition of another = as well as removing quotes
or this:
if (typeof repeatableArray[index].StratusFormsParent != "undefined") { // note the addition of typeof