Version Description
Download this release
Release Info
| Developer | webdorado |
| Plugin | |
| Version | 1.0.50 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.49 to 1.0.50
- contact-form-builder.php +2 -2
- js/contact_form_maker_admin.js +9 -0
- js/contactformmaker.js +1 -1
- readme.txt +8 -5
contact-form-builder.php
CHANGED
|
@@ -3,14 +3,14 @@
|
|
| 3 |
* Plugin Name: Contact Form Builder
|
| 4 |
* Plugin URI: http://web-dorado.com/products/wordpress-contact-form-builder.html
|
| 5 |
* Description: Contact Form Builder is an advanced plugin to add contact forms into your website. It comes along with multiple default templates which can be customized.
|
| 6 |
-
* Version: 1.0.
|
| 7 |
* Author: WebDorado
|
| 8 |
* Author URI: http://web-dorado.com/
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 10 |
*/
|
| 11 |
define('WD_CFM_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
| 12 |
define('WD_CFM_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|
| 13 |
-
define('WD_CFM_VERSION', '1.0.
|
| 14 |
|
| 15 |
// Plugin menu.
|
| 16 |
function contact_form_maker_options_panel() {
|
| 3 |
* Plugin Name: Contact Form Builder
|
| 4 |
* Plugin URI: http://web-dorado.com/products/wordpress-contact-form-builder.html
|
| 5 |
* Description: Contact Form Builder is an advanced plugin to add contact forms into your website. It comes along with multiple default templates which can be customized.
|
| 6 |
+
* Version: 1.0.50
|
| 7 |
* Author: WebDorado
|
| 8 |
* Author URI: http://web-dorado.com/
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 10 |
*/
|
| 11 |
define('WD_CFM_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
| 12 |
define('WD_CFM_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|
| 13 |
+
define('WD_CFM_VERSION', '1.0.50');
|
| 14 |
|
| 15 |
// Plugin menu.
|
| 16 |
function contact_form_maker_options_panel() {
|
js/contact_form_maker_admin.js
CHANGED
|
@@ -263,3 +263,12 @@ function spider_check_isnum(e) {
|
|
| 263 |
}
|
| 264 |
return true;
|
| 265 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 263 |
}
|
| 264 |
return true;
|
| 265 |
}
|
| 266 |
+
|
| 267 |
+
function stopRKey(evt) {
|
| 268 |
+
var evt = (evt) ? evt : ((event) ? event : null);
|
| 269 |
+
var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
|
| 270 |
+
if ((evt.keyCode == 13) && (node.type=="text")) {return false;}
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
document.onkeypress = stopRKey;
|
| 274 |
+
|
js/contactformmaker.js
CHANGED
|
@@ -10181,7 +10181,7 @@ function add(key) {
|
|
| 10181 |
type=document.getElementById("element_type").value;
|
| 10182 |
|
| 10183 |
|
| 10184 |
-
if(type=="type_map")
|
| 10185 |
{
|
| 10186 |
if(typeof gmapdata[i] == "undefined" || typeof gmapdata[i].getCenter() == "undefined"){
|
| 10187 |
alert("Please go to Global Options to setup the Map API key. It may take up to 5 minutes for API key change to take effect.");
|
| 10181 |
type=document.getElementById("element_type").value;
|
| 10182 |
|
| 10183 |
|
| 10184 |
+
if(type=="type_map" || type=="type_mark_map")
|
| 10185 |
{
|
| 10186 |
if(typeof gmapdata[i] == "undefined" || typeof gmapdata[i].getCenter() == "undefined"){
|
| 10187 |
alert("Please go to Global Options to setup the Map API key. It may take up to 5 minutes for API key change to take effect.");
|
readme.txt
CHANGED
|
@@ -1,14 +1,14 @@
|
|
| 1 |
=== Form Builder ===
|
| 2 |
Contributors: webdorado
|
| 3 |
Donate link: http://web-dorado.com/products/wordpress-contact-form-builder.html
|
| 4 |
-
Tags:
|
| 5 |
-
Requires at least: 3.
|
| 6 |
-
Tested up to: 4.
|
| 7 |
-
Stable tag: 1.0.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
Create responsive FREE contact forms with multiple templates and theme options.
|
|
@@ -137,6 +137,9 @@ After downloading the ZIP file,
|
|
| 137 |
|
| 138 |
|
| 139 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
| 140 |
= 1.8.49 =
|
| 141 |
* Fixed: JS error on incorrect Google Maps API key
|
| 142 |
* Added: Alert about incorrect Google Maps API key
|
| 1 |
=== Form Builder ===
|
| 2 |
Contributors: webdorado
|
| 3 |
Donate link: http://web-dorado.com/products/wordpress-contact-form-builder.html
|
| 4 |
+
Tags: captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
|
| 5 |
+
Requires at least: 3.0.0
|
| 6 |
+
Tested up to: 4.6
|
| 7 |
+
Stable tag: 1.0.50
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 11 |
+
Form Builder is an intuitive tool for creating contact forms rearranging and editing fields.
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
Create responsive FREE contact forms with multiple templates and theme options.
|
| 137 |
|
| 138 |
|
| 139 |
== Changelog ==
|
| 140 |
+
= 1.8.50 =
|
| 141 |
+
* Fixed: Unexpected behaviour on pressing "Enter" key on back end
|
| 142 |
+
|
| 143 |
= 1.8.49 =
|
| 144 |
* Fixed: JS error on incorrect Google Maps API key
|
| 145 |
* Added: Alert about incorrect Google Maps API key
|
