@xterm/xterm 5.6.0-beta.1 → 5.6.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xterm/xterm",
3
3
  "description": "Full xterm terminal, in your browser",
4
- "version": "5.6.0-beta.1",
4
+ "version": "5.6.0-beta.3",
5
5
  "main": "lib/xterm.js",
6
6
  "style": "css/xterm.css",
7
7
  "types": "typings/xterm.d.ts",
@@ -2979,7 +2979,7 @@ export class InputHandler extends Disposable implements IInputHandler {
2979
2979
  if (args[1]) {
2980
2980
  return this._createHyperlink(args[0], args[1]);
2981
2981
  }
2982
- if (args[0]) {
2982
+ if (args[0].trim()) {
2983
2983
  return false;
2984
2984
  }
2985
2985
  return this._finishHyperlink();