You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to start/stop a couple of Typed together. I understand there are a lot involved with the timers, however, I believe there is a bug on the line where the backspace starts but it is paused state.
this.setPauseStatus(curString, curStrPos, true);
The 3rd parameter should be false in the backspace function.
Demo
Obviously this demo could be made better with a backDelay. But I want to show the concept of start/stop not handling it properly. This code will never show the second sentence.
Description
I'm trying to start/stop a couple of Typed together. I understand there are a lot involved with the timers, however, I believe there is a bug on the line where the
backspace
starts but it is paused state.The 3rd parameter should be
false
in thebackspace
function.Demo
Obviously this demo could be made better with a
backDelay
. But I want to show the concept of start/stop not handling it properly. This code will never show the second sentence.https://jsfiddle.net/wq2v047j/2/
Steps to Reproduce
Expected behavior:
The backspace sequence should start after 1000ms after the first sentence has been written.
Actual behavior:
Nothing visually happens. But the
onStringTyped
is called constantly.Reproduces how often:
100%
Additional Information
My ugly work around is to reset your internal state before I restart.
The text was updated successfully, but these errors were encountered: