Skip to content

Commit 892a8f0

Browse files
authored
fix(chrome-only): Change autocomplete from 'nope' to 'off' (#273)
* Revert "0.34.0" This reverts commit fc9a3b4. * Revert "feat: change autocomplete from 'off' to 'nope' (#250)" This reverts commit fbbed04.
1 parent fc9a3b4 commit 892a8f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/autocomplete/typeahead.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ function buildDom(options) {
538538
.prop('readonly', true)
539539
.attr({
540540
'aria-hidden': 'true',
541-
autocomplete: 'nope',
541+
autocomplete: 'off',
542542
spellcheck: 'false',
543543
tabindex: -1
544544
});
@@ -563,7 +563,7 @@ function buildDom(options) {
563563
$input
564564
.addClass(_.className(options.cssClasses.prefix, options.cssClasses.input, true))
565565
.attr({
566-
autocomplete: 'nope',
566+
autocomplete: 'off',
567567
spellcheck: false,
568568

569569
// Accessibility features

0 commit comments

Comments
 (0)