monkeytype/src/js/dom-util.js

8 lines
198 B
JavaScript
Raw Normal View History

2020-11-28 15:27:24 +08:00
export function showBackgroundLoader() {
$("#backgroundLoader").stop(true, true).fadeIn(125);
}
export function hideBackgroundLoader() {
$("#backgroundLoader").stop(true, true).fadeOut(125);
}