ran prettier again

This commit is contained in:
typerqeo 2020-10-27 19:26:44 -07:00
parent 6ba54326e5
commit cf58cc3d2e
2 changed files with 6 additions and 6 deletions

View file

@ -3155,9 +3155,9 @@
Support on
<a href="https://www.patreon.com/monkeytype">Patreon</a>
or
<a
href="https://www.paypal.me/jackbartnik"
target="_blank">PayPal</a>
<a href="https://www.paypal.me/jackbartnik" target="_blank">
PayPal
</a>
</div>
</div>
<div class="right">

View file

@ -1506,7 +1506,6 @@ function updateCaretPosition() {
let smoothlinescroll = $("#words .smoothScroller").height();
if (smoothlinescroll === undefined) smoothlinescroll = 0;
if (config.smoothCaret) {
caret.stop(true, false).animate(
{
@ -4529,9 +4528,10 @@ $(document).keydown(function (event) {
"ArrowLeft",
"ArrowRight",
"ArrowDown",
undefined
undefined,
].includes(event.key)
) return;
)
return;
if (/F\d+/.test(event.key)) return;
if (/Numpad/.test(event.key)) return;
event = emulateLayout(event);