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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
https://github.com/huashengdun/webssh/blob/master/webssh/static/js/main.js#L447 wssh.send = function(data) {
wssh.send = function(data) {
I would like a delay between characters so it looks like someone typing.
So add an optional parameter of delay (in ms because setTimeout wants ms)
function(data,delay=0) for each c in data sock.send(c); something something setTimeout(resolve, delay))
I found this here: https://stackoverflow.com/questions/951021/what-is-the-javascript-version-of-sleep
The text was updated successfully, but these errors were encountered:
This seems like something that that should be coded by someone who knows what they are doing. Which is not me.
I will try to find someone to do this if I get some encouragement, like t seems like something that would be merged if done well.
Sorry, something went wrong.
No branches or pull requests
https://github.com/huashengdun/webssh/blob/master/webssh/static/js/main.js#L447
wssh.send = function(data) {
I would like a delay between characters so it looks like someone typing.
So add an optional parameter of delay (in ms because setTimeout wants ms)
I found this here:
https://stackoverflow.com/questions/951021/what-is-the-javascript-version-of-sleep
The text was updated successfully, but these errors were encountered: