Skip to content

Commit 4766fed

Browse files
committed
Linting with prettier
1 parent 931cead commit 4766fed

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<!-- Google tag (gtag.js) -->
@@ -2230,7 +2230,7 @@ <h2>Thank you!</h2>
22302230
{ keyCode, key, description: `Jump to ${name}` },
22312231
() => {
22322232
window.location = `#/${id}`;
2233-
}
2233+
},
22342234
);
22352235
});
22362236

@@ -2268,7 +2268,7 @@ <h2>Thank you!</h2>
22682268
autocomplete="off"
22692269
/>
22702270
</div>
2271-
`
2271+
`,
22722272
)
22732273
.on("keypress", function (e) {
22742274
if (e.which === 13) {
@@ -2286,7 +2286,7 @@ <h2>Thank you!</h2>
22862286
) {
22872287
if (!isNaN(exerciseTime) && exerciseTime >= 0.1) {
22882288
exerciseTime = Duration.fromMillis(
2289-
exerciseTime * 60 * 1000
2289+
exerciseTime * 60 * 1000,
22902290
);
22912291
const countDownTime = DateTime.now().plus(exerciseTime);
22922292

@@ -2298,7 +2298,7 @@ <h2>Thank you!</h2>
22982298
$(".reveal").append(
22992299
`<aside class="exercise-timer" style="display: block; position: absolute; ` +
23002300
`top: 20px; left: 15px;` +
2301-
`font-size: 50px;"></aside>`
2301+
`font-size: 50px;"></aside>`,
23022302
);
23032303
}
23042304

@@ -2310,8 +2310,8 @@ <h2>Thank you!</h2>
23102310
const updateFrequency = 1000;
23112311
$(".exercise-timer").text(
23122312
getTimeText(
2313-
exerciseTime.minus({ milliseconds: updateFrequency })
2314-
)
2313+
exerciseTime.minus({ milliseconds: updateFrequency }),
2314+
),
23152315
);
23162316

23172317
// update the remaining time each second
@@ -2324,7 +2324,7 @@ <h2>Thank you!</h2>
23242324
$(".exercise-timer").text(getTimeText(elapsedTime));
23252325
else if (secondsRemaining >= 0) {
23262326
$(".exercise-timer").text(
2327-
getTimeText(Duration.fromMillis(0))
2327+
getTimeText(Duration.fromMillis(0)),
23282328
);
23292329
} else if (secondsRemaining >= -5)
23302330
$(".exercise-timer")
@@ -2334,14 +2334,14 @@ <h2>Thank you!</h2>
23342334
};
23352335
updateExerciseTimerInterval = setInterval(
23362336
updateTimer,
2337-
updateFrequency
2337+
updateFrequency,
23382338
);
23392339
}
23402340
} else cleanup();
23412341
}
23422342
});
23432343
$(`#${inputId}`).focus();
2344-
}
2344+
},
23452345
);
23462346

23472347
// make sure the footer shows up on the PDF version and the regular slides

0 commit comments

Comments
 (0)