Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ function bundle_public_default() {
'js/src/common-decoder.js',
'js/src/common-cleantalk-modal.js',
'js/src/public-0*.js',
'js/src/ShadowrootProtection/ApbctShadowRootCallbacks.js',
'js/src/ShadowrootProtection/ApbctShadowRootConfig.js',
'js/src/ShadowrootProtection/ApbctShadowRootProtection.js',
'js/src/public-1*.js',
'js/src/public-3*.js',
])
Expand All @@ -82,6 +85,9 @@ function bundle_public_default_with_gathering() {
'js/src/common-decoder.js',
'js/src/common-cleantalk-modal.js',
'js/src/public-0*.js',
'js/src/ShadowrootProtection/ApbctShadowRootCallbacks.js',
'js/src/ShadowrootProtection/ApbctShadowRootConfig.js',
'js/src/ShadowrootProtection/ApbctShadowRootProtection.js',
'js/src/public-1*.js',
'js/src/public-2-gathering-data.js',
'js/src/public-3*.js',
Expand All @@ -98,6 +104,9 @@ function bundle_public_external_protection() {
'js/src/common-decoder.js',
'js/src/common-cleantalk-modal.js',
'js/src/public-0*.js',
'js/src/ShadowrootProtection/ApbctShadowRootCallbacks.js',
'js/src/ShadowrootProtection/ApbctShadowRootConfig.js',
'js/src/ShadowrootProtection/ApbctShadowRootProtection.js',
'js/src/public-1*.js',
'js/src/public-2-external-forms.js',
'!js/src/public-2-gathering-data.js',
Expand All @@ -115,6 +124,9 @@ function bundle_public_external_protection_with_gathering() {
'js/src/common-decoder.js',
'js/src/common-cleantalk-modal.js',
'js/src/public-0*.js',
'js/src/ShadowrootProtection/ApbctShadowRootCallbacks.js',
'js/src/ShadowrootProtection/ApbctShadowRootConfig.js',
'js/src/ShadowrootProtection/ApbctShadowRootProtection.js',
'js/src/public-1*.js',
'js/src/public-2-external-forms.js',
'js/src/public-2-gathering-data.js',
Expand All @@ -132,6 +144,9 @@ function bundle_public_internal_protection() {
'js/src/common-decoder.js',
'js/src/common-cleantalk-modal.js',
'js/src/public-0*.js',
'js/src/ShadowrootProtection/ApbctShadowRootCallbacks.js',
'js/src/ShadowrootProtection/ApbctShadowRootConfig.js',
'js/src/ShadowrootProtection/ApbctShadowRootProtection.js',
'js/src/public-1*.js',
'js/src/public-2-internal-forms.js',
'js/src/public-3*.js',
Expand All @@ -148,6 +163,9 @@ function bundle_public_internal_protection_with_gathering() {
'js/src/common-decoder.js',
'js/src/common-cleantalk-modal.js',
'js/src/public-0*.js',
'js/src/ShadowrootProtection/ApbctShadowRootCallbacks.js',
'js/src/ShadowrootProtection/ApbctShadowRootConfig.js',
'js/src/ShadowrootProtection/ApbctShadowRootProtection.js',
'js/src/public-1*.js',
'js/src/public-2-internal-forms.js',
'js/src/public-2-gathering-data.js',
Expand All @@ -165,6 +183,9 @@ function bundle_public_full_protection() {
'js/src/common-decoder.js',
'js/src/common-cleantalk-modal.js',
'js/src/public-0*.js',
'js/src/ShadowrootProtection/ApbctShadowRootCallbacks.js',
'js/src/ShadowrootProtection/ApbctShadowRootConfig.js',
'js/src/ShadowrootProtection/ApbctShadowRootProtection.js',
'js/src/public-1*.js',
'js/src/public-2*.js',
'!js/src/public-2-gathering-data.js',
Expand All @@ -182,6 +203,9 @@ function bundle_public_full_protection_with_gathering() {
'js/src/common-decoder.js',
'js/src/common-cleantalk-modal.js',
'js/src/public-0*.js',
'js/src/ShadowrootProtection/ApbctShadowRootCallbacks.js',
'js/src/ShadowrootProtection/ApbctShadowRootConfig.js',
'js/src/ShadowrootProtection/ApbctShadowRootProtection.js',
'js/src/public-1*.js',
'js/src/public-2*.js',
'js/src/public-3*.js',
Expand Down
5 changes: 5 additions & 0 deletions inc/cleantalk-integrations-by-hook.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,11 @@
'setting' => 'forms__registrations_test',
'ajax' => false
),
'MailChimpShadowRoot' => array(
'hook' => 'cleantalk_force_mailchimp_shadowroot_check',
'setting' => 'forms__check_external',
'ajax' => true
),
'BloomForms' => array(
'hook' => 'bloom_subscribe',
'setting' => 'forms__contact_forms_test',
Expand Down
1 change: 1 addition & 0 deletions inc/cleantalk-pluggable.php
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,7 @@ function apbct_is_skip_request($ajax = false, $ajax_message_obj = array())
'nasa_process_login', //Nasa login
'leaky_paywall_validate_registration', //Leaky Paywall validation request
'cleantalk_force_ajax_check', //Force ajax check has direct integration
'cleantalk_force_mailchimp_shadowroot_check', // Mailchimp ShadowRoot has direct integration
'cscf-submitform', // CSCF has direct integration
'mailpoet', // Mailpoet has direct integration
'wpcommunity_auth_login', // WPCommunity login
Expand Down
2 changes: 1 addition & 1 deletion js/apbct-public-bundle.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/apbct-public-bundle_ext-protection.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/apbct-public-bundle_ext-protection_gathering.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/apbct-public-bundle_full-protection.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/apbct-public-bundle_full-protection_gathering.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/apbct-public-bundle_gathering.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/apbct-public-bundle_int-protection.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/apbct-public-bundle_int-protection_gathering.min.js

Large diffs are not rendered by default.

Loading