Skip to content

Commit e5110b4

Browse files
author
Shiva Poudel
committed
1 parent eb51290 commit e5110b4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

assets/js/admin/form-builder.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -415,12 +415,12 @@
415415
});
416416

417417
// Delete field choice.
418-
$builder.on( 'click', '.everest-forms-field-option-row-choices .remove', function( e ) {
418+
$builder.on( 'click', '.everest-forms-field-option-row-choices .remove', function( event ) {
419419
EVFPanelBuilder.choiceDelete( event, $(this) );
420420
});
421421

422422
// Field choices defaults - (before change).
423-
$builder.on( 'mousedown', '.everest-forms-field-option-row-choices input[type=radio]', function(e) {
423+
$builder.on( 'mousedown', '.everest-forms-field-option-row-choices input[type=radio]', function() {
424424
var $this = $(this);
425425

426426
if ( $this.is( ':checked' ) ) {
@@ -431,7 +431,7 @@
431431
});
432432

433433
// Field choices defaults.
434-
$builder.on( 'click', '.everest-forms-field-option-row-choices input[type=radio]', function(e) {
434+
$builder.on( 'click', '.everest-forms-field-option-row-choices input[type=radio]', function() {
435435
var $this = $(this),
436436
list = $this.parent().parent();
437437

0 commit comments

Comments
 (0)