Contact Form 7 add confirm - Version 1.3.8.10

Version Description

Download this release

Release Info

Developer Yuichiro ABE
Plugin Icon wp plugin Contact Form 7 add confirm
Version 1.3.8.10
Comparing to
See all releases

Code changes from version 1.3.8.9 to 1.3.8.10

contact-form-7-confirm.php CHANGED
@@ -7,7 +7,7 @@ Author: Yuichiro ABE
7
  Author URI: http://www.eyeta.jp/
8
  Text Domain: contact-form-7-confirm
9
  Domain Path: /languages/
10
- Version: 1.3.8.9
11
  */
12
 
13
  /* Copyright 2014- Yuichiro ABE (email: y.abe at eyeta.jp)
@@ -44,7 +44,7 @@ Version: 1.3.8.9
44
   戻って編集ボタンのデフォルトテキストが英語だった件を修正
45
  以降、readme.txtに記述
46
  */
47
- define( 'WPCF7C_VERSION', '1.3.8.9' );
48
 
49
  if ( ! defined( 'WPCF7C_PLUGIN_BASENAME' ) )
50
  define( 'WPCF7C_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
7
  Author URI: http://www.eyeta.jp/
8
  Text Domain: contact-form-7-confirm
9
  Domain Path: /languages/
10
+ Version: 1.3.8.10
11
  */
12
 
13
  /* Copyright 2014- Yuichiro ABE (email: y.abe at eyeta.jp)
44
   戻って編集ボタンのデフォルトテキストが英語だった件を修正
45
  以降、readme.txtに記述
46
  */
47
+ define( 'WPCF7C_VERSION', '1.3.8.10' );
48
 
49
  if ( ! defined( 'WPCF7C_PLUGIN_BASENAME' ) )
50
  define( 'WPCF7C_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
includes/controller.php CHANGED
@@ -48,7 +48,7 @@ function wpcf7c_before_send_mail_step1(&$cls) {
48
  function wpcf7c_ajax_json_echo_step1($items, $result) {
49
  //eyeta_log("wpcf7c_ajax_json_echo_step1");
50
  if($result['mail_sent']) {
51
- if($items["onSubmit"] == null) {
52
  $items["onSubmit"] = array("wpcf7c_step1('" . $_POST['_wpcf7_unit_tag'] . "');");
53
  } else {
54
  $items["onSubmit"][] = "wpcf7c_step1('" . $_POST['_wpcf7_unit_tag'] . "');";
48
  function wpcf7c_ajax_json_echo_step1($items, $result) {
49
  //eyeta_log("wpcf7c_ajax_json_echo_step1");
50
  if($result['mail_sent']) {
51
+ if(!isset($items["onSubmit"]) || $items["onSubmit"] == null) {
52
  $items["onSubmit"] = array("wpcf7c_step1('" . $_POST['_wpcf7_unit_tag'] . "');");
53
  } else {
54
  $items["onSubmit"][] = "wpcf7c_step1('" . $_POST['_wpcf7_unit_tag'] . "');";
includes/js/scripts.js CHANGED
@@ -27,9 +27,9 @@
27
  //parent.find("input[name=_wpcf7]").val("");
28
 
29
  // 不要要素非表示
30
- parent.find(".wpcf7c-elm-step1").removeClass("wpcf7c-force-hide");
31
  parent.find(".wpcf7c-elm-step2").addClass("wpcf7c-force-hide");
32
  parent.find(".wpcf7c-elm-step3").addClass("wpcf7c-force-hide");
 
33
 
34
  // 戻って編集ボタン挙動
35
  parent.find(".wpcf7c-btn-back").on("click", function(){
@@ -59,9 +59,9 @@ var wpcf7c_to_step1 = function(parent, scroll){
59
 
60
  jQuery(".wpcf7c-conf-hidden").remove();
61
 
62
- parent.find(".wpcf7c-elm-step1").removeClass("wpcf7c-force-hide");
63
  parent.find(".wpcf7c-elm-step2").addClass("wpcf7c-force-hide");
64
  parent.find(".wpcf7c-elm-step3").addClass("wpcf7c-force-hide");
 
65
 
66
  parent.find("input[name=_wpcf7c]").val("step1");
67
 
@@ -141,8 +141,8 @@ var wpcf7c_step1 = function(unit_tag){
141
 
142
  // 表示切替
143
  parent.find(".wpcf7c-elm-step1").addClass("wpcf7c-force-hide");
144
- parent.find(".wpcf7c-elm-step2").removeClass("wpcf7c-force-hide");
145
  parent.find(".wpcf7c-elm-step3").addClass("wpcf7c-force-hide");
 
146
 
147
  parent.find(".ajax-loader").removeClass("wpcf7c-force-hide");
148
 
27
  //parent.find("input[name=_wpcf7]").val("");
28
 
29
  // 不要要素非表示
 
30
  parent.find(".wpcf7c-elm-step2").addClass("wpcf7c-force-hide");
31
  parent.find(".wpcf7c-elm-step3").addClass("wpcf7c-force-hide");
32
+ parent.find(".wpcf7c-elm-step1").removeClass("wpcf7c-force-hide");
33
 
34
  // 戻って編集ボタン挙動
35
  parent.find(".wpcf7c-btn-back").on("click", function(){
59
 
60
  jQuery(".wpcf7c-conf-hidden").remove();
61
 
 
62
  parent.find(".wpcf7c-elm-step2").addClass("wpcf7c-force-hide");
63
  parent.find(".wpcf7c-elm-step3").addClass("wpcf7c-force-hide");
64
+ parent.find(".wpcf7c-elm-step1").removeClass("wpcf7c-force-hide");
65
 
66
  parent.find("input[name=_wpcf7c]").val("step1");
67
 
141
 
142
  // 表示切替
143
  parent.find(".wpcf7c-elm-step1").addClass("wpcf7c-force-hide");
 
144
  parent.find(".wpcf7c-elm-step3").addClass("wpcf7c-force-hide");
145
+ parent.find(".wpcf7c-elm-step2").removeClass("wpcf7c-force-hide");
146
 
147
  parent.find(".ajax-loader").removeClass("wpcf7c-force-hide");
148
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: contact, form, contact form
5
  Requires at least: 3.8
6
  Tested up to: 3.9
7
- Stable tag: 1.3.8.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -53,8 +53,12 @@ An answer to that question.
53
  1.3.8.9
54
  「Notice: Undefined index」が出ていた箇所を修正
55
  javascript上で$を利用しないように変更
56
- == Upgrade notice ==
57
- 1.3.8.9
58
- 「Notice: Undefined index」が出ていた箇所を修正
59
- javascript上で$を利用しないように変更
60
 
 
 
 
 
 
 
 
 
4
  Tags: contact, form, contact form
5
  Requires at least: 3.8
6
  Tested up to: 3.9
7
+ Stable tag: 1.3.8.10
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
53
  1.3.8.9
54
  「Notice: Undefined index」が出ていた箇所を修正
55
  javascript上で$を利用しないように変更
 
 
 
 
56
 
57
+ 1.3.8.10
58
+ デグレしてしまっていた箇所の修正
59
+ javascriptのaddClassとremoveClassの順序を変更
60
+
61
+ == Upgrade notice ==
62
+ 1.3.8.10
63
+ デグレしてしまっていた箇所の修正
64
+ javascriptのaddClassとremoveClassの順序を変更