mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-01 17:25:23 +08:00
consistent animation timing
This commit is contained in:
parent
9b15329337
commit
a1479518a2
1 changed files with 3 additions and 2 deletions
|
@ -185,7 +185,7 @@ export let show = (): void => {
|
|||
{
|
||||
opacity: 1,
|
||||
},
|
||||
100
|
||||
125
|
||||
);
|
||||
}
|
||||
$("#commandLine input").val("");
|
||||
|
@ -206,8 +206,9 @@ function hide(shouldFocusTestUI = true): void {
|
|||
{
|
||||
opacity: 0,
|
||||
},
|
||||
100,
|
||||
125,
|
||||
() => {
|
||||
addCommandlineBackground();
|
||||
$("#commandLineWrapper").addClass("hidden");
|
||||
$("#commandLine").removeClass("allCommands");
|
||||
if (shouldFocusTestUI) {
|
||||
|
|
Loading…
Reference in a new issue