This commit is contained in:
Boof 2023-03-15 13:13:05 +01:00 committed by GitHub
parent 89de8610c3
commit 213db6e50d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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