Skip to content

Commit

Permalink
fix(options): disable spellcheck in textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
lidel committed Sep 7, 2017
1 parent 5bee3b0 commit 54d0bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion add-on/src/options/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<dd>list of hostnames known for exposing IPFS resources under <code>/ipfs/</code> path</dd>
</dl>
</label>
<textarea id="publicGateways" rows="4" required placeholder="List of hostnames separated with spaces or newlines"></textarea>
<textarea id="publicGateways" rows="4" required autocomplete="off" spellcheck="false" placeholder="List of hostnames separated with spaces or newlines"></textarea>
</div>
<div>
<label for="customGatewayUrl">
Expand Down

0 comments on commit 54d0bcd

Please sign in to comment.