From 44cfb2dc87b02948e7e3d565796fd9ccc91b8739 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 30 Mar 2017 14:26:56 +0300 Subject: [PATCH 1/2] Added Cloud Commander to real world uses --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 28d1ac47..d0de1569 100644 --- 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. From 26ccf2a3169681c91d0d42e36c71bd49a80987a5 Mon Sep 17 00:00:00 2001 From: InDieTasten Date: Fri, 31 Mar 2017 22:16:11 +0200 Subject: [PATCH 2/2] Fix typos in comment --- src/Linkifier.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Linkifier.ts b/src/Linkifier.ts index d9a16940..0f9d9a21 100644 --- a/src/Linkifier.ts +++ b/src/Linkifier.ts @@ -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;