Contact Form Email - Version 1.2.57

Version Description

  • Fix to Gutenberg integration
Download this release

Release Info

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

Code changes from version 1.2.56 to 1.2.57

Files changed (3) hide show
  1. README.txt +6 -2
  2. form-to-email.php +1 -1
  3. js/block.js +2 -2
README.txt CHANGED
@@ -454,6 +454,10 @@ When you click a field already added into the contact form builder area, you can
454
 
455
  == Changelog ==
456
 
 
 
 
 
457
  = 1.2.56 =
458
  * New support option
459
 
@@ -929,5 +933,5 @@ When you click a field already added into the contact form builder area, you can
929
 
930
  == Upgrade Notice ==
931
 
932
- = 1.2.56 =
933
- * New support option
454
 
455
  == Changelog ==
456
 
457
+
458
+ = 1.2.57 =
459
+ * Fix to Gutenberg integration
460
+
461
  = 1.2.56 =
462
  * New support option
463
 
933
 
934
  == Upgrade Notice ==
935
 
936
+ = 1.2.57 =
937
+ * Fix to Gutenberg integration
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.56
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.57
7
  Author: CodePeople
8
  Author URI: https://form2email.dwbooster.com
9
  Text Domain: contact-form-to-email
js/block.js CHANGED
@@ -1,7 +1,7 @@
1
  ( function( blocks, element ) {
2
  var el = wp.element.createElement,
3
  source = blocks.source,
4
- InspectorControls = blocks.InspectorControls,
5
  category = {slug:'contact-form-to-email', title : 'Contact Form to Email'};
6
 
7
  /* Plugin Category */
@@ -24,7 +24,7 @@
24
  },
25
 
26
  edit: function( props ) {
27
- var focus = props.focus;
28
  return [
29
  !!focus && el(
30
  InspectorControls,
1
  ( function( blocks, element ) {
2
  var el = wp.element.createElement,
3
  source = blocks.source,
4
+ InspectorControls = wp.editor.InspectorControls,
5
  category = {slug:'contact-form-to-email', title : 'Contact Form to Email'};
6
 
7
  /* Plugin Category */
24
  },
25
 
26
  edit: function( props ) {
27
+ var focus = props.isSelected;
28
  return [
29
  !!focus && el(
30
  InspectorControls,