mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-11 18:04:27 +08:00
ran prettier again
This commit is contained in:
parent
6ba54326e5
commit
cf58cc3d2e
2 changed files with 6 additions and 6 deletions
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue