Skip to content

Commit d24af78

Browse files
committed
Build for Release
1 parent ba7f530 commit d24af78

File tree

6 files changed

+161
-103
lines changed

6 files changed

+161
-103
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
**Tags:** forms, contact form, contact form plugin, custom form, form builder, form, form creator, form manager, form creation, contact forms, custom forms, forms builder, forms creator, forms manager, forms creation
44
**Requires at least:** 4.4
55
**Requires PHP:** 5.6.20
6-
**Tested up to:** 5.6
7-
**Stable tag:** 1.6.5
6+
**Tested up to:** 5.7
7+
**Stable tag:** 1.6.6
88
**License:** GPLv2 or later
99
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -249,6 +249,12 @@ weForms is the most beginner friendly and fastest WordPress contact form plugin
249249

250250
## Changelog ##
251251

252+
### Version 1.6.6 (13 April, 2021) ###
253+
* **Fix:** Front End report link fixes
254+
* **Fix:** Signature Displays in Entries
255+
* **Update:** jQuery updates for Columns
256+
257+
252258
### Version 1.6.5 (18 February, 2021) ###
253259
* **Fix:** Updated admin notices to better conform to WordPress design standards, and configured them to only show on WeForms pages.
254260
* **Update:** Removed FortressDB admin notice.

assets/js/spa-app.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
'use strict';
22

3-
var _typeof9 = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
3+
var _typeof11 = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
4+
5+
var _typeof10 = typeof Symbol === "function" && _typeof11(Symbol.iterator) === "symbol" ? function (obj) {
6+
return typeof obj === "undefined" ? "undefined" : _typeof11(obj);
7+
} : function (obj) {
8+
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj === "undefined" ? "undefined" : _typeof11(obj);
9+
};
10+
11+
var _typeof9 = typeof Symbol === "function" && _typeof10(Symbol.iterator) === "symbol" ? function (obj) {
12+
return typeof obj === "undefined" ? "undefined" : _typeof10(obj);
13+
} : function (obj) {
14+
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj === "undefined" ? "undefined" : _typeof10(obj);
15+
};
416

517
var _typeof8 = typeof Symbol === "function" && _typeof9(Symbol.iterator) === "symbol" ? function (obj) {
618
return typeof obj === "undefined" ? "undefined" : _typeof9(obj);

assets/js/spa-app.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/wpuf/js/wpuf-form-builder-components.js

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,16 @@
3434

3535
created: function created() {
3636
var self = this,
37-
humanpresence_field_id = 0,
37+
humanpresence_field_id = 0,
3838
i = 0;
39-
for(i = 0; i < self.$store.state.form_fields.length; i++) {
39+
for (i = 0; i < self.$store.state.form_fields.length; i++) {
4040
if (self.$store.state.form_fields[i].template === 'humanpresence') {
4141
humanpresence_field_id = self.$store.state.form_fields[i].id;
4242
}
4343
}
4444

4545
wpuf_form_builder.event_hub.$on('humanpresence-changed', this.humanpresence_changed);
4646
wpuf_form_builder.event_hub.$on('humanpresence-disabled', this.delete_humanpresence_field);
47-
4847
},
4948

5049
mounted: function mounted() {
@@ -177,7 +176,7 @@
177176

178177
for (i = 0; i < this.form_fields.length; i++) {
179178
if (parseInt(field_id) === parseInt(this.form_fields[i].id)) {
180-
if(this.form_fields[i].template === 'humanpresence'){
179+
if (this.form_fields[i].template === 'humanpresence') {
181180
this.delete_field_no_confirm(i);
182181
this.disable_humanpresence_setting();
183182
} else {
@@ -189,9 +188,9 @@
189188

190189
delete_humanpresence_field: function delete_humanpresence_field(data) {
191190
var i = 0;
192-
if(data.$store.state.form_fields.length) {
193-
for(i = 0; i < data.$store.state.form_fields.length; i++) {
194-
if(data.$store.state.form_fields[i].template === 'humanpresence') {
191+
if (data.$store.state.form_fields.length) {
192+
for (i = 0; i < data.$store.state.form_fields.length; i++) {
193+
if (data.$store.state.form_fields[i].template === 'humanpresence') {
195194
this.delete_field_no_confirm(i);
196195
this.disable_humanpresence_setting();
197196
}
@@ -206,7 +205,7 @@
206205
},
207206

208207
humanpresence_changed: function humanpresence_changed(e, data) {
209-
if(data.$store.state.settings.humanpresence_enabled === 'true'){
208+
if (data.$store.state.settings.humanpresence_enabled === 'true') {
210209
wpuf_form_builder.event_hub.$emit('humanpresence-enabled', data);
211210
} else {
212211
wpuf_form_builder.event_hub.$emit('humanpresence-disabled', data);
@@ -848,19 +847,19 @@
848847
handle: '.wpuf-column-field-control-buttons .move',
849848
scroll: true,
850849
stop: function stop(event, ui) {
851-
var data_source = $( ui.item ).attr( 'data-source' );
850+
var data_source = $(ui.item).attr('data-source');
852851

853852
if ('panel' === data_source) {
854853
var payload = {
855854
toIndex: parseInt($(ui.item).index()),
856-
field_template: $( ui.item ).attr( 'data-form-field' ),
855+
field_template: $(ui.item).attr('data-form-field'),
857856
to_column: $(this).parent()[0].classList[0]
858857
};
859858

860859
self.add_column_inner_field(payload);
861860

862861
// remove button from stage
863-
$(this).find( '.button.ui-draggable.ui-draggable-handle' ).remove();
862+
$(this).find('.button.ui-draggable.ui-draggable-handle').remove();
864863
}
865864
},
866865
update: function update(e, ui) {
@@ -874,9 +873,9 @@
874873

875874
if ('column-field-stage' === source) {
876875
payload.field_id = self.field.id;
877-
payload.fromIndex = parseInt($( item ).attr('column-field-index'));
878-
payload.fromColumn = $( item ).attr('in-column');
879-
payload.toColumn = $( item ).parent().parent()[0].classList[0];
876+
payload.fromIndex = parseInt($(item).attr('column-field-index'));
877+
payload.fromColumn = $(item).attr('in-column');
878+
payload.toColumn = $(item).parent().parent()[0].classList[0];
880879

881880
// when drag field one column to another column, sortable event trigger twice and try to swap field twice.
882881
// So the following conditions are needed to check and run swap_column_field_elements commit only once
@@ -1302,7 +1301,7 @@
13021301
}
13031302
}
13041303

1305-
if(field_template === 'humanpresence') {
1304+
if (field_template === 'humanpresence') {
13061305
var settings = this.$store.state.settings;
13071306
settings.humanpresence_enabled = true;
13081307
this.$store.commit('set_form_settings', settings);
@@ -1315,7 +1314,7 @@
13151314
},
13161315

13171316
add_humanpresence_field: function add_humanpresence_field(data) {
1318-
if(!this.containsField('humanpresence')) {
1317+
if (!this.containsField('humanpresence')) {
13191318
this.add_form_field('humanpresence');
13201319
}
13211320
},

assets/wpuf/js/wpuf-form-builder-components.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)