Disable spellcheck on the captcha input. Especially annoying on mobile devices.
This commit is contained in:
parent
bdfcf60d8b
commit
e09a5720bd
@ -6379,7 +6379,8 @@
|
|||||||
input = $.el('input', {
|
input = $.el('input', {
|
||||||
className: 'captcha-input field',
|
className: 'captcha-input field',
|
||||||
title: 'Verification',
|
title: 'Verification',
|
||||||
autocomplete: 'off'
|
autocomplete: 'off',
|
||||||
|
spellcheck: false
|
||||||
});
|
});
|
||||||
this.nodes = {
|
this.nodes = {
|
||||||
challenge: $.id('recaptcha_challenge_field_holder'),
|
challenge: $.id('recaptcha_challenge_field_holder'),
|
||||||
|
|||||||
@ -571,6 +571,7 @@ QR =
|
|||||||
className: 'captcha-input field'
|
className: 'captcha-input field'
|
||||||
title: 'Verification'
|
title: 'Verification'
|
||||||
autocomplete: 'off'
|
autocomplete: 'off'
|
||||||
|
spellcheck: false
|
||||||
@nodes =
|
@nodes =
|
||||||
challenge: $.id 'recaptcha_challenge_field_holder'
|
challenge: $.id 'recaptcha_challenge_field_holder'
|
||||||
img: imgContainer.firstChild
|
img: imgContainer.firstChild
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user