Prevent autocomplete for highlight settings (#4337)
Chrome seems to somewhat often auto fill the text input of the highlight exception list with my username as the next field that follows is of type password. Try to work around that by telling chrome not to autofill either of those. Do note that this is only a hint... The broser vendors apply some $magic heuristics and if they trigger they ignore the hint.
This commit is contained in:
parent
21c6abdd1d
commit
3ba7fb6de4
@ -386,6 +386,7 @@ expressions, it will trigger a highlight."
|
|||||||
type="text"
|
type="text"
|
||||||
name="highlights"
|
name="highlights"
|
||||||
class="input"
|
class="input"
|
||||||
|
autocomplete="off"
|
||||||
placeholder="Comma-separated, e.g.: word, some more words, anotherword"
|
placeholder="Comma-separated, e.g.: word, some more words, anotherword"
|
||||||
/>
|
/>
|
||||||
</label>
|
</label>
|
||||||
@ -410,6 +411,7 @@ your nickname or expressions defined in custom highlights."
|
|||||||
type="text"
|
type="text"
|
||||||
name="highlightExceptions"
|
name="highlightExceptions"
|
||||||
class="input"
|
class="input"
|
||||||
|
autocomplete="off"
|
||||||
placeholder="Comma-separated, e.g.: word, some more words, anotherword"
|
placeholder="Comma-separated, e.g.: word, some more words, anotherword"
|
||||||
/>
|
/>
|
||||||
</label>
|
</label>
|
||||||
|
Loading…
Reference in New Issue
Block a user