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
I should not see password: again when login in
The terminal is not paused when I log in, so I see the password: prompt again.
function delay(n) { return new Promise(resolve => setTimeout(resolve, n)); } $(function() { $('body').terminal($.noop, { greetings: 'Welcome ' + id, name: 'term_' + id, login: function(u, p, c) { delay(5000).then(() => c(u + ':' + p)); } }); });
found when trying to reproduce the issue from #537
The text was updated successfully, but these errors were encountered:
always pause on login #538
479ad28
No branches or pull requests
Expected behavior
I should not see password: again when login in
Actual behavior
The terminal is not paused when I log in, so I see the password: prompt again.
Steps to reproduce
found when trying to reproduce the issue from #537
The text was updated successfully, but these errors were encountered: