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