Calculated Fields Form - Version 1.1.102

Version Description

  • Fixes an issue with the radio buttons when switching on/off is enabled.
Download this release

Release Info

Developer codepeople
Plugin Icon 128x128 Calculated Fields Form
Version 1.1.102
Comparing to
See all releases

Code changes from version 1.1.101 to 1.1.102

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://cff.dwbooster.com
4
  Tags: form,quote form,contact form,form builder,calculator,calculated,quote calculator,forms,form editor,advanced forms,payment calculator,payment,recurring payment,quote,fields,calculated field,price calculator,email,form design,paypal,equation editor,formula,equation,quote calculator,post,posts,plugin,widget,admin,sidebar,images,image,page,shortcode,products form,woocommerce,addons,layout,session,post,cookie,get,webhook,Dropbox,pdf,language
5
  Requires at least: 3.0.5
6
  Tested up to: 6.0
7
- Stable tag: 1.1.101
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -965,6 +965,10 @@ A: Please, follow the steps below:
965
 
966
  == Changelog ==
967
 
 
 
 
 
968
  = 1.1.101 =
969
 
970
  * Modifies the Textarea control to preserve the changes of line accessing the raw field's value.
@@ -1014,10 +1018,4 @@ A: Please, follow the steps below:
1014
 
1015
  * Modifies the summary control.
1016
  * Modifies the container fields for accepting 12 columns.
1017
- * Modifies the Autocomplete Places add-on (Platinum version).
1018
-
1019
- = 1.1.92 =
1020
-
1021
- * Fixes an issue in the summary field that allowed evaluating scripts.
1022
- * Fixes an issue by reordering fields into DIV and Fieldset controls.
1023
- * Modifies the payment gateways add-ons (Platinum version).
4
  Tags: form,quote form,contact form,form builder,calculator,calculated,quote calculator,forms,form editor,advanced forms,payment calculator,payment,recurring payment,quote,fields,calculated field,price calculator,email,form design,paypal,equation editor,formula,equation,quote calculator,post,posts,plugin,widget,admin,sidebar,images,image,page,shortcode,products form,woocommerce,addons,layout,session,post,cookie,get,webhook,Dropbox,pdf,language
5
  Requires at least: 3.0.5
6
  Tested up to: 6.0
7
+ Stable tag: 1.1.102
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
965
 
966
  == Changelog ==
967
 
968
+ = 1.1.102 =
969
+
970
+ * Fixes an issue with the radio buttons when switching on/off is enabled.
971
+
972
  = 1.1.101 =
973
 
974
  * Modifies the Textarea control to preserve the changes of line accessing the raw field's value.
1018
 
1019
  * Modifies the summary control.
1020
  * Modifies the container fields for accepting 12 columns.
1021
+ * Modifies the Autocomplete Places add-on (Platinum version).
 
 
 
 
 
 
changelog.txt CHANGED
@@ -1,5 +1,9 @@
1
  == Changelog ==
2
 
 
 
 
 
3
  = 1.1.101 =
4
 
5
  * Modifies the Textarea control to preserve the changes of line accessing the raw field's value.
1
  == Changelog ==
2
 
3
+ = 1.1.102 =
4
+
5
+ * Fixes an issue with the radio buttons when switching on/off is enabled.
6
+
7
  = 1.1.101 =
8
 
9
  * Modifies the Textarea control to preserve the changes of line accessing the raw field's value.
cp_calculatedfieldsf_free.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Calculated Fields Form
4
  Plugin URI: https://cff.dwbooster.com
5
  Description: Create forms with field values calculated based in other form field values.
6
- Version: 1.1.101
7
  Text Domain: calculated-fields-form
8
  Author: CodePeople
9
  Author URI: https://cff.dwbooster.com
@@ -16,7 +16,7 @@ if(!defined('WP_DEBUG') || true != WP_DEBUG)
16
  }
17
 
18
  // Defining main constants
19
- define('CP_CALCULATEDFIELDSF_VERSION', '1.1.101' );
20
  define('CP_CALCULATEDFIELDSF_MAIN_FILE_PATH', __FILE__ );
21
  define('CP_CALCULATEDFIELDSF_BASE_PATH', dirname( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
22
  define('CP_CALCULATEDFIELDSF_BASE_NAME', plugin_basename( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
3
  Plugin Name: Calculated Fields Form
4
  Plugin URI: https://cff.dwbooster.com
5
  Description: Create forms with field values calculated based in other form field values.
6
+ Version: 1.1.102
7
  Text Domain: calculated-fields-form
8
  Author: CodePeople
9
  Author URI: https://cff.dwbooster.com
16
  }
17
 
18
  // Defining main constants
19
+ define('CP_CALCULATEDFIELDSF_VERSION', '1.1.102' );
20
  define('CP_CALCULATEDFIELDSF_MAIN_FILE_PATH', __FILE__ );
21
  define('CP_CALCULATEDFIELDSF_BASE_PATH', dirname( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
22
  define('CP_CALCULATEDFIELDSF_BASE_NAME', plugin_basename( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
js/fbuilder-pro-public.jquery.js CHANGED
@@ -1,4 +1,4 @@
1
- $.fbuilder['version'] = '1.1.101';
2
  $.fbuilder['controls'] = $.fbuilder['controls'] || {};
3
  $.fbuilder['forms'] = $.fbuilder['forms'] || {};
4
 
1
+ $.fbuilder['version'] = '1.1.102';
2
  $.fbuilder['controls'] = $.fbuilder['controls'] || {};
3
  $.fbuilder['forms'] = $.fbuilder['forms'] || {};
4
 
js/fields-public/07_fbuilder.fradio.js CHANGED
@@ -55,7 +55,7 @@
55
  e = $(m);
56
 
57
  $('[id*="'+n+'_"]').each(function(){if(m !== this) $(this).data('previous-status', false);});
58
- if(e.data('previous-status')){ m.checked = false; e.change();}
59
  e.data('previous-status', m.checked);
60
  });
61
  }
55
  e = $(m);
56
 
57
  $('[id*="'+n+'_"]').each(function(){if(m !== this) $(this).data('previous-status', false);});
58
+ if(e.data('previous-status') || (typeof e.data('previous-status') == 'undefined' && m.checked)){ m.checked = false; e.change();}
59
  e.data('previous-status', m.checked);
60
  });
61
  }