Contact Form Email - Version 1.2.68

Version Description

  • Fixed conflict with loading page plugins
Download this release

Release Info

Developer codepeople
Plugin Icon 128x128 Contact Form Email
Version 1.2.68
Comparing to
See all releases

Code changes from version 1.2.67 to 1.2.68

README.txt CHANGED
@@ -454,6 +454,9 @@ When you click a field already added into the contact form builder area, you can
454
 
455
  == Changelog ==
456
 
 
 
 
457
  = 1.2.67 =
458
  * Gutenberg compatibility updates
459
 
@@ -962,5 +965,5 @@ When you click a field already added into the contact form builder area, you can
962
 
963
  == Upgrade Notice ==
964
 
965
- = 1.2.67 =
966
- * Gutenberg compatibility updates
454
 
455
  == Changelog ==
456
 
457
+ = 1.2.68 =
458
+ * Fixed conflict with loading page plugins
459
+
460
  = 1.2.67 =
461
  * Gutenberg compatibility updates
462
 
965
 
966
  == Upgrade Notice ==
967
 
968
+ = 1.2.68 =
969
+ * Fixed conflict with loading page plugins
cp-admin-int.inc.php CHANGED
@@ -162,7 +162,7 @@ if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset( $_POST[$this->prefix.'_post_
162
  </script>
163
 
164
  <script>
165
-
166
  $easyFormQuery(document).ready(function() {
167
  var f = $easyFormQuery("#fbuilder").fbuilder();
168
  f.fBuild.loadData("form_structure");
@@ -184,6 +184,9 @@ if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset( $_POST[$this->prefix.'_post_
184
  });
185
 
186
  });
 
 
 
187
  var randcaptcha = 1;
188
  function generateCaptcha()
189
  {
162
  </script>
163
 
164
  <script>
165
+ jQuery(window).on('load', function(){
166
  $easyFormQuery(document).ready(function() {
167
  var f = $easyFormQuery("#fbuilder").fbuilder();
168
  f.fBuild.loadData("form_structure");
184
  });
185
 
186
  });
187
+
188
+ });
189
+
190
  var randcaptcha = 1;
191
  function generateCaptcha()
192
  {
form-to-email.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Contact Form Email
4
  Plugin URI: https://form2email.dwbooster.com/download
5
  Description: Contact form that sends the data to email and also to a database list and CSV file.
6
- Version: 1.2.67
7
  Author: CodePeople
8
  Author URI: https://form2email.dwbooster.com
9
  Text Domain: contact-form-to-email
3
  Plugin Name: Contact Form Email
4
  Plugin URI: https://form2email.dwbooster.com/download
5
  Description: Contact form that sends the data to email and also to a database list and CSV file.
6
+ Version: 1.2.68
7
  Author: CodePeople
8
  Author URI: https://form2email.dwbooster.com
9
  Text Domain: contact-form-to-email
js/fbuilderf.jquery.js CHANGED
@@ -1,4 +1,4 @@
1
- jQuery.holdReady( true );
2
  jQuery(window).on('load', function(){
3
  (function($) {
4
  $.fn.fbuilder = function(options){
@@ -1407,5 +1407,5 @@ jQuery(window).on('load', function(){
1407
  fnum = "_"+fcount;
1408
  }
1409
  })(jQuery);
1410
- jQuery.holdReady(false);
1411
  });
1
+ /** jQuery.holdReady( true ); */
2
  jQuery(window).on('load', function(){
3
  (function($) {
4
  $.fn.fbuilder = function(options){
1407
  fnum = "_"+fcount;
1408
  }
1409
  })(jQuery);
1410
+ /** jQuery.holdReady(false); */
1411
  });