mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-14 18:03:28 +08:00
7 lines
198 B
JavaScript
7 lines
198 B
JavaScript
export function showBackgroundLoader() {
|
|
$("#backgroundLoader").stop(true, true).fadeIn(125);
|
|
}
|
|
|
|
export function hideBackgroundLoader() {
|
|
$("#backgroundLoader").stop(true, true).fadeOut(125);
|
|
}
|