(web) disable blinking cursor

This commit is contained in:
Alexey Kontsevoy 2017-03-24 13:56:09 -04:00
parent 6b81a44b4a
commit 7f5ecdb221
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ render((
<Provider reactor={reactor}>
<Router history={session.getHistory()}>
<Route component={DocumentTitle}>
<Route path={cfg.routes.msgs} title="Whoops" component={MessagePage}/>
<Route path={cfg.routes.msgs} component={MessagePage}/>
<Route path={cfg.routes.login} title="Login" component={Login}/>
<Route path={cfg.routes.newUser} component={Signup}/>
<Redirect from={cfg.routes.app} to={cfg.routes.nodes}/>

View file

@ -61,7 +61,7 @@ class TtyTerminal {
scrollback: this.scrollBack,
useStyle: true,
screenKeys: true,
cursorBlink: true
cursorBlink: false
});
this.term.open(this._el);