Skip to content

Commit

Permalink
fix resize of long animation after finish
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Apr 27, 2024
1 parent 2d521ee commit b314463
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## 2.40.6
### Bugfix
* fix resize of long animation after finish

## 2.40.5
### Bugfix
* fix visible prompt during multiline typing animation [#934](https://github.com/jcubic/jquery.terminal/issues/934)
Expand Down
6 changes: 3 additions & 3 deletions js/jquery.terminal-2.40.5.js
Expand Up @@ -41,7 +41,7 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Sat, 27 Apr 2024 14:23:24 +0000
* Date: Sat, 27 Apr 2024 14:48:57 +0000
*/
/* global define, Map, BigInt */
/* eslint-disable */
Expand Down Expand Up @@ -5310,7 +5310,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: '2.40.5',
date: 'Sat, 27 Apr 2024 14:23:24 +0000',
date: 'Sat, 27 Apr 2024 14:48:57 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -9249,7 +9249,7 @@
// clear prompt for multiline string #934
self.set_prompt('');
}
var is_partial = !!lines.get_partial().length;
var is_partial = !!output.find('.partial').length;
self.echo(formatted_line, $.extend({}, options, {
formatters: false,
finalize: null,
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal-2.40.5.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/jquery.terminal-src.js
Expand Up @@ -9249,7 +9249,7 @@
// clear prompt for multiline string #934
self.set_prompt('');
}
var is_partial = !!lines.get_partial().length;
var is_partial = !!output.find('.partial').length;
self.echo(formatted_line, $.extend({}, options, {
formatters: false,
finalize: null,
Expand Down
6 changes: 3 additions & 3 deletions js/jquery.terminal.js
Expand Up @@ -41,7 +41,7 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Sat, 27 Apr 2024 14:23:24 +0000
* Date: Sat, 27 Apr 2024 14:48:57 +0000
*/
/* global define, Map, BigInt */
/* eslint-disable */
Expand Down Expand Up @@ -5310,7 +5310,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: '2.40.5',
date: 'Sat, 27 Apr 2024 14:23:24 +0000',
date: 'Sat, 27 Apr 2024 14:48:57 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -9249,7 +9249,7 @@
// clear prompt for multiline string #934
self.set_prompt('');
}
var is_partial = !!lines.get_partial().length;
var is_partial = !!output.find('.partial').length;
self.echo(formatted_line, $.extend({}, options, {
formatters: false,
finalize: null,
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

0 comments on commit b314463

Please sign in to comment.