We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, first of all thank you @inker for sharing this project.
I'm trying to simulate locally many different draws to estimate group probabilities.
The main bottleneck I'm finding are the animations in "Fast draw". Is there any way to disable them to allow for faster sims?
Thanks in advance
The text was updated successfully, but these errors were encountered:
@LourencoVazPato
Currently, the only way to disable transitions is by patching the code manually.
Option + ⌘ + J
Shift + CTRL + J
const s = document.createElement('style'); s.textContent = 'body * { transition: none !important }'; document.head.append(s);
(Close the dev tools) Transitions are gone.
I might add an option to disable all UI in the future.
Sorry, something went wrong.
I can work in this feature if you want!
No branches or pull requests
Hi, first of all thank you @inker for sharing this project.
I'm trying to simulate locally many different draws to estimate group probabilities.
The main bottleneck I'm finding are the animations in "Fast draw".
Is there any way to disable them to allow for faster sims?
Thanks in advance
The text was updated successfully, but these errors were encountered: