PluginProbe
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder / 3.3.1
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder v3.3.1
3.3.1 V-3.3.0 3.2.2 3.2.1 3.2.0 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 V3.0.3 V3.0.2 -3.0.1 V_3.0.0 1.1.1 1.1.8 1.2 1.3 1.4 1.4.18 1.5.2 1.9 2.0 2.10.0 2.10.1 All 138 releases
← All changes | includes/Admin/Form/FrontEndScriptGenerator.php +23 -23 3.2.23.3.1 View file →
@@ -31,22 +31,30 @@
31 31 private static function generateBfGlobalObjJS($contentIds = [])
32 32 {
33 33 $contentidArray = wp_json_encode($contentIds);
34 34 return ' if(!window.bf_globals){ window.bf_globals = {};}
35 - ' . $contentidArray . '.forEach(function(contentId){
36 - const form = document.getElementById(contentId);
37 - if(!form){
38 - delete window.bf_globals[contentId];
39 - return;
40 - }
41 - if(!window.bf_globals[contentId]){
42 - window.bf_globals[contentId] = {inits: {}, contentId: contentId};
43 - }else{
44 - window.bf_globals[contentId].inits = {};
45 - window.bf_globals[contentId].contentId = contentId;
35 + (function(){
36 + var bfSetupGlobals = function(){
37 + ' . $contentidArray . '.forEach(function(contentId){
38 + const form = document.getElementById(contentId);
39 + if(!form){
40 + delete window.bf_globals[contentId];
41 + return;
42 + }
43 + if(!window.bf_globals[contentId]){
44 + window.bf_globals[contentId] = {inits: {}, contentId: contentId};
45 + }else{
46 + if(!window.bf_globals[contentId].inits) window.bf_globals[contentId].inits = {};
47 + window.bf_globals[contentId].contentId = contentId;
48 + }
49 + });
50 + };
51 + if(document.readyState === "loading"){
52 + document.addEventListener("DOMContentLoaded", bfSetupGlobals, { once: true });
53 + } else {
54 + bfSetupGlobals();
46 55 }
47 -
48 - });';
56 + })();';
49 57 }
50 58
51 59 private static function isValidationNeeded($fldData)
52 60 {
@@ -102,8 +110,10 @@
102 110 $this->appendJs($this->getScript(), $postId, $preview);
103 111 $this->appendJs($this->generateFieldConfigsJs($contentIds), $postId, $preview);
104 112 // init all js events and functions at last
105 113 $this->appendJs(self::getFileFromAssetsJs('bitform-init.min.js'), $postId, $preview);
114 + // picks up forms injected after load (AJAX, popups, lazy content)
115 + $this->appendJs(self::getFileFromAssetsJs('bitform-observer.min.js'), $postId, $preview);
106 116 if (defined('ELEMENTOR_PRO_VERSION')) {
107 117 $this->appendJs(self::getFileFromAssetsJs('bitform-elementor.min.js'), $postId, $preview);
108 118 }
109 119
@@ -580,16 +590,6 @@
580 590 $this->addScriptInLoadedScriptsList(['priority' => 303, 'filename' => 'initRecaptchaV3Fld.min.js']);
581 591 return;
582 592 }
583 593 }
584 - }
585 -
586 - public function dd($data, $exit = false)
587 - {
588 - echo '+++++++++++++';
589 - echo '<pre>';
590 - var_dump($data);
591 - echo '</pre>';
592 - echo '+++++++++++++';
593 - $exit ? exit : '';
594 594 }
595 595 }