Skip to content

Commit

Permalink
fix typing animation length #721
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Dec 24, 2021
1 parent b8ac7e9 commit 50270b5
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions js/jquery.terminal-2.30.2.js
Expand Up @@ -41,7 +41,7 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Fri, 24 Dec 2021 21:35:49 +0000
* Date: Fri, 24 Dec 2021 21:38:03 +0000
*/
/* global define, Map */
/* eslint-disable */
Expand Down Expand Up @@ -5130,7 +5130,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Fri, 24 Dec 2021 21:35:49 +0000',
date: 'Fri, 24 Dec 2021 21:38:03 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -8806,7 +8806,7 @@
animating = true;
var prompt = self.get_prompt();
var char_i = 0;
var len = $.terminal.length(message);
var len = $.terminal.length(formattted);
if (message.length > 0) {
var new_prompt = '';
if (options.prompt) {
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal-2.30.2.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/jquery.terminal-src.js
Expand Up @@ -8806,7 +8806,7 @@
animating = true;
var prompt = self.get_prompt();
var char_i = 0;
var len = $.terminal.length(message);
var len = $.terminal.length(formattted);
if (message.length > 0) {
var new_prompt = '';
if (options.prompt) {
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: Fri, 24 Dec 2021 21:35:49 +0000
* Date: Fri, 24 Dec 2021 21:38:03 +0000
*/
/* global define, Map */
/* eslint-disable */
Expand Down Expand Up @@ -5130,7 +5130,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Fri, 24 Dec 2021 21:35:49 +0000',
date: 'Fri, 24 Dec 2021 21:38:03 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -8806,7 +8806,7 @@
animating = true;
var prompt = self.get_prompt();
var char_i = 0;
var len = $.terminal.length(message);
var len = $.terminal.length(formattted);
if (message.length > 0) {
var new_prompt = '';
if (options.prompt) {
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 50270b5

Please sign in to comment.