monkeytype/src/js/dom-util.js
2020-12-05 15:49:53 +00:00

7 lines
198 B
JavaScript

export function showBackgroundLoader() {
$("#backgroundLoader").stop(true, true).fadeIn(125);
}
export function hideBackgroundLoader() {
$("#backgroundLoader").stop(true, true).fadeOut(125);
}