Skip to content

Commit

Permalink
support for password field strenth meter; bumping version to 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tyxla committed Jul 15, 2015
1 parent 17ad5d3 commit d1e206d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gravity Forms: Multiple Form Instances
=====================================

### Version 1.0.4
### Version 1.0.5

-----

Expand Down
3 changes: 2 additions & 1 deletion gravityforms-multiple-form-instances.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Allows multiple instances of the same form to be run on a single page when using AJAX.
* Author: tyxla
* Author URI: https://github.com/tyxla
* Version: 1.0.4
* Version: 1.0.5
* License: GPL2
* Requires at least: 3.0.1
* Tested up to: 4.2.2
Expand Down Expand Up @@ -81,6 +81,7 @@ function gform_get_form_filter($form_string, $form) {
'if(formId == ' . $form['id'] . ')' => 'if(formId == ' . $random_id . ')',
"window['gf_form_conditional_logic'][" . $form['id'] . "]" => "window['gf_form_conditional_logic'][" . $random_id . "]",
"trigger('gform_post_conditional_logic', [" . $form['id'] . "," => "trigger('gform_post_conditional_logic', [" . $random_id . ",",
'gformShowPasswordStrength("input_' . $form['id'] . '_' => 'gformShowPasswordStrength("input_' . $random_id . '_',
$hidden_field => $hidden_field . "<input type='hidden' name='gform_random_id' value='" . $random_id . "' />",
);

Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: tyxla
Tags: gravity, form, multiple, gravity forms
Requires at least: 3.0.1
Tested up to: 4.2.2
Stable tag: 1.0.4
Stable tag: 1.0.5
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

= 1.0.5 =
Now compatible with password field strength meter.

= 1.0.4 =
Now compatible with field conditional logic.

Expand Down

0 comments on commit d1e206d

Please sign in to comment.