mod-build 3.6.76-beta.1 → 3.6.76-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -441,12 +441,8 @@ modForm.isSupportedByCxp = function(formData) {
|
|
|
441
441
|
* @returns {Boolean} - true if meets MQL Criteria
|
|
442
442
|
*/
|
|
443
443
|
modForm.meetsMQLCriteria = function(formData) {
|
|
444
|
-
if (this.isSmallBusiness(formData.annualRevenue)) {
|
|
445
|
-
return false;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
444
|
if (this.isFreeEmail(formData.email) && formData.websiteUrl === '') {
|
|
449
|
-
|
|
445
|
+
return false;
|
|
450
446
|
}
|
|
451
447
|
|
|
452
448
|
return true;
|