- This topic has 21 replies, 6 voices, and was last updated 11 months, 3 weeks ago by .
-
Topic
-
TypeError: logics is undefinedconditional-logic.js:221:18
You should check for the logics object before sub checks, like:
var relation = typeof logics !== 'undefined' && typeof logics.relation !== 'undefined' ? logics.relation.toLowerCase() : 'and', success = relation === 'and';
- You must be logged in to reply to this topic.