Merge pull request #6124 from roc-lang/prevent-spellcheck

Add spellcheck attribute for REPL
This commit is contained in:
Richard Feldman 2023-11-30 19:41:59 -05:00 committed by GitHub
commit 4798760229
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@
<div id="history-text" aria-live="polite"></div>
</code>
<div id="repl-prompt" role="presentation">»</div>
<textarea aria-label="Input Roc code here, then press Enter to submit it to the REPL" rows="5" id="source-input" placeholder="Enter some Roc code here."></textarea>
<textarea aria-label="Input Roc code here, then press Enter to submit it to the REPL" rows="5" id="source-input" placeholder="Enter some Roc code here." spellcheck="false"></textarea>
</div>
</div>
<script type="module" src="/site.js"></script>

View File

@ -8,7 +8,7 @@
<div id="history-text" aria-live="polite"></div>
</code>
<div id="repl-prompt" role="presentation">»</div>
<textarea aria-label="Input Roc code here, then press Enter to submit it to the REPL" rows="5" id="source-input" placeholder="Enter some Roc code here."></textarea>
<textarea aria-label="Input Roc code here, then press Enter to submit it to the REPL" rows="5" id="source-input" placeholder="Enter some Roc code here." spellcheck="false"></textarea>
</div>
</div>
<script type="module" src="/site.js"></script>