Animate dice dropdown

This commit is contained in:
SillyLossy
2023-03-19 01:09:45 +02:00
parent 95ca39d8e0
commit 9886ebb3a1
2 changed files with 3 additions and 3 deletions

View File

@ -54,10 +54,10 @@ function addDiceRollButton() {
if (target.is(button) && !dropdown.is(":visible")) {
e.preventDefault();
dropdown.show();
dropdown.show(200);
popper.update();
} else {
dropdown.hide();
dropdown.hide(200);
}
});
}