Skip to content

Commit

Permalink
fix: Désactiver la vérification orthographique dans les champs.
Browse files Browse the repository at this point in the history
  • Loading branch information
regseb committed Aug 9, 2019
1 parent 9c153bf commit 1fddc23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/options/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ <h3 data-i18n-textcontent="connection-title"></h3>
<div>
<label for="connection-host" data-i18n-textcontent></label>
<input type="text" id="connection-host" name="host" required
placeholder="192.168.0.1" />
placeholder="192.168.0.1" autocomplete="off"
spellcheck="false" />
</div>
<p class="warning" data-i18n-textcontent="connection-change"></p>
</form>
Expand Down
2 changes: 1 addition & 1 deletion src/popup/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<label id="paste" data-i18n-title>
<input type="checkbox" name="paste" disabled autocomplete="off" />
<object data="img/paste.svg"></object>
<textarea autocomplete="off"></textarea>
<textarea autocomplete="off" spellcheck="false"></textarea>
</label>

<span></span>
Expand Down

0 comments on commit 1fddc23

Please sign in to comment.