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
Exec array animation pause terminal after first command
It should execute all commands and not pause, unless the command is async
Terminal is paused after first command
$.terminal.active().exec(['100000', '222222', '44444444'], {typing: true, delay: 50})
The text was updated successfully, but these errors were encountered:
The problem is when command is sync. If the command is animated or async it works fine.
var term = $('body').terminal(function(command) { const cmd = $.terminal.parse_command(command); if (cmd.name === 'echo') { this.echo(cmd.rest); } }); term..exec(['echo 111111', 'echo 222222', 'echo 33333'], {typing: true, delay: 50});
Sorry, something went wrong.
fix animated exec array with sync commands #722
e94adba
No branches or pull requests
Issue summary
Exec array animation pause terminal after first command
Expected behavior
It should execute all commands and not pause, unless the command is async
Actual behavior
Terminal is paused after first command
Steps to reproduce
The text was updated successfully, but these errors were encountered: