This commit is contained in:
Boof 2023-03-15 12:54:24 +01:00 committed by GitHub
parent 1ed728546f
commit 79da149a08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ const fx = new TextScramble(el);
let counter = 0;
const next = () => {
fx.setText(phrases[counter]).then(() => {
setTimeout(next, 800);
setTimeout(next, 1600);
});
counter = (counter + 1) % phrases.length;
};