Skip to content

Commit

Permalink
fix rendering links in prompt #891
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Jul 29, 2023
1 parent 1a53bc3 commit aa14469
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,7 @@
* fix paused terminal when using array as interpreter and RPC without system describe
* fix edge case of disappearing content after refresh [#871](https://github.com/jcubic/jquery.terminal/issues/871)
* fix rendering empty lines prompt and during typing animation [#890](https://github.com/jcubic/jquery.terminal/issues/890)
* fix rendering links in prompt and during typing animation [#891](https://github.com/jcubic/jquery.terminal/issues/891)

## 2.36.0
### Features
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal-2.36.0.css
Expand Up @@ -12,7 +12,7 @@
* Copyright (c) 2011-2023 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*
* Date: Wed, 28 Jun 2023 14:16:43 +0000
* Date: Sat, 29 Jul 2023 12:03:58 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd-prompt, .cmd-prompt div {
Expand Down Expand Up @@ -233,7 +233,7 @@ body.full-screen-terminal .terminal {
white-space: nowrap;
clear: both;
}
.cmd .cmd-prompt > span, .cmd .cmd-prompt:empty {
.cmd .cmd-prompt > span, .cmd .cmd-prompt > a, .cmd .cmd-prompt:empty {
float: left;
}
.cmd-prompt [data-text] > span {
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal-2.36.0.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/jquery.terminal-src.css
Expand Up @@ -233,7 +233,7 @@ body.full-screen-terminal .terminal {
white-space: nowrap;
clear: both;
}
.cmd .cmd-prompt > span, .cmd .cmd-prompt:empty {
.cmd .cmd-prompt > span, .cmd .cmd-prompt > a, .cmd .cmd-prompt:empty {
float: left;
}
.cmd-prompt [data-text] > span {
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal.css
Expand Up @@ -12,7 +12,7 @@
* Copyright (c) 2011-2023 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*
* Date: Wed, 28 Jun 2023 14:16:43 +0000
* Date: Sat, 29 Jul 2023 12:03:58 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd-prompt, .cmd-prompt div {
Expand Down Expand Up @@ -233,7 +233,7 @@ body.full-screen-terminal .terminal {
white-space: nowrap;
clear: both;
}
.cmd .cmd-prompt > span, .cmd .cmd-prompt:empty {
.cmd .cmd-prompt > span, .cmd .cmd-prompt > a, .cmd .cmd-prompt:empty {
float: left;
}
.cmd-prompt [data-text] > span {
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/jquery.terminal.min.css.map

Large diffs are not rendered by default.

0 comments on commit aa14469

Please sign in to comment.