Skip to content
Snippets Groups Projects
Commit d30980bf authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Add Animations class, including pulse.

parent 6ed260b0
No related branches found
No related tags found
No related merge requests found
class Animations {
static async pulseHighlight(statusElement, ms) {
statusElement.classList.add("pulse");
await new Promise(resolve => setTimeout(resolve, ms));
statusElement.classList.remove("pulse");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment