We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62eaaa1 commit 7ced80dCopy full SHA for 7ced80d
src/modules/security.js
@@ -555,7 +555,8 @@
555
556
$forms.each(function () {
557
var $form = $(this),
558
- config = $form.context.validationConfig;
+ config = $form.context.validationConfig || false;
559
+ if (config) {
560
561
$('[data-validation~="recaptcha"]', $form).each(function () {
562
var $input = $(this),
@@ -597,6 +598,7 @@
597
598
.append(div);
599
600
});
601
+ };
602
603
604
};
0 commit comments