I'm using jQuery Terminal to build my site.
Now I'm building signin
command:
signin: function() {
this.read("user id: ").then(userId =>
this.set_mask('*').read("password: ").then(password =>
// signin process
));
}
This code works correctly.
But after this process set_mask('*')
will remain.
I've tried this.set_mask(false);
but it doesn't work.
How to unset this mask?
Any help is appreciated