]> git.proxmox.com Git - mirror_xterm.js.git/commitdiff
Merge branch 'master' into 618_register_link_before_dom
authorDaniel Imms <tyriar@tyriar.com>
Tue, 4 Apr 2017 15:58:43 +0000 (08:58 -0700)
committerGitHub <noreply@github.com>
Tue, 4 Apr 2017 15:58:43 +0000 (08:58 -0700)
README.md
src/Linkifier.ts

index 28d1ac477b435c887e7517c0163952b5b67f78ce..d0de15693377db63d6e2c0029b46807574f7f8fa 100644 (file)
--- a/README.md
+++ b/README.md
@@ -31,6 +31,7 @@ Xterm.js is used in several world-class applications to provide great terminal e
 - [**CoderPad**](https://coderpad.io): Online interviewing platform for programmers. Run code in many programming languages, with results displayed by `xterm.js`.
 - [**WebSSH2**](https://github.com/billchurch/WebSSH2): A web based SSH2 client using `xterm.js`, socket.io, and ssh2.
 - [**Spyder Terminal**](https://github.com/spyder-ide/spyder-terminal): A full fledged system terminal embedded on Spyder IDE. 
+- [**Cloud Commander**](https://cloudcmd.io "Cloud Commander"): Orthodox web file manager with console and editor.
 
 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.
 
index c263496a4c124c07b576643ca61fafc22a2a6fc3..f47554ea775f405406e760b7771f699a9a246696 100644 (file)
@@ -37,8 +37,8 @@ const HYPERTEXT_LINK_MATCHER_ID = 0;
 export class Linkifier {
   /**
    * The time to wait after a row is changed before it is linkified. This prevents
-   * the costly operation of searching every row multiple times, pntentially a
-   * huge aount of times.
+   * the costly operation of searching every row multiple times, potentially a
+   * huge amount of times.
    */
   protected static TIME_BEFORE_LINKIFY = 200;