Merge branch 'master' into search-fix

This commit is contained in:
Daniel Imms
2017-09-05 11:30:28 -07:00
committed by GitHub
2 changed files with 7 additions and 0 deletions
+3
View File
@@ -44,6 +44,9 @@ Xterm.js is used in several world-class applications to provide great terminal e
- [**JupyterLab**](https://github.com/jupyterlab/jupyterlab): An extensible
computational environment for Jupyter, supporting interactive data science and scientific computing across all programming languages.
- [**Script Runner**](https://github.com/ioquatix/script-runner): Run scripts (or a shell) in Atom.
- [**Whack Whack Terminal**](https://github.com/Microsoft/WhackWhackTerminal): Terminal emulator for Visual Studio 2017.
- [**VTerm**](https://github.com/vterm/vterm): Extensible terminal emulator based on Electron and React.
Do you use xterm.js in your application as well? Please [open a Pull Request](https://github.com/sourcelair/xterm.js/pulls) to include it here. We would love to have it in our list.
+4
View File
@@ -66,6 +66,10 @@
};
term._sendData = function (data) {
if (socket.readyState !== 1) {
return;
}
socket.send(data);
};