Skip to content

Commit d1e206d

Browse files
committed
support for password field strenth meter; bumping version to 1.0.5
1 parent 17ad5d3 commit d1e206d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gravity Forms: Multiple Form Instances
22
=====================================
33

4-
### Version 1.0.4
4+
### Version 1.0.5
55

66
-----
77

gravityforms-multiple-form-instances.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Allows multiple instances of the same form to be run on a single page when using AJAX.
66
* Author: tyxla
77
* Author URI: https://github.com/tyxla
8-
* Version: 1.0.4
8+
* Version: 1.0.5
99
* License: GPL2
1010
* Requires at least: 3.0.1
1111
* Tested up to: 4.2.2
@@ -81,6 +81,7 @@ function gform_get_form_filter($form_string, $form) {
8181
'if(formId == ' . $form['id'] . ')' => 'if(formId == ' . $random_id . ')',
8282
"window['gf_form_conditional_logic'][" . $form['id'] . "]" => "window['gf_form_conditional_logic'][" . $random_id . "]",
8383
"trigger('gform_post_conditional_logic', [" . $form['id'] . "," => "trigger('gform_post_conditional_logic', [" . $random_id . ",",
84+
'gformShowPasswordStrength("input_' . $form['id'] . '_' => 'gformShowPasswordStrength("input_' . $random_id . '_',
8485
$hidden_field => $hidden_field . "<input type='hidden' name='gform_random_id' value='" . $random_id . "' />",
8586
);
8687

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: tyxla
33
Tags: gravity, form, multiple, gravity forms
44
Requires at least: 3.0.1
55
Tested up to: 4.2.2
6-
Stable tag: 1.0.4
6+
Stable tag: 1.0.5
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -25,6 +25,9 @@ This plugin addresses this issue, allowing multiple forms to be displayed on the
2525

2626
== Changelog ==
2727

28+
= 1.0.5 =
29+
Now compatible with password field strength meter.
30+
2831
= 1.0.4 =
2932
Now compatible with field conditional logic.
3033

0 commit comments

Comments
 (0)