Skip to content

Commit

Permalink
fix lint error #930
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Apr 20, 2024
1 parent 5cd6ce4 commit 446beb9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions js/jquery.terminal-src.js
Expand Up @@ -9273,8 +9273,8 @@
setTimeout(function() {
if (is_partial || options.newline === false) {
// HACK: fix sequance of animations #930
index = self.last_index();
var node = output.find('[data-index="' + index + '"]');
var idx = self.last_index();
var node = output.find('[data-index="' + idx + '"]');
options.finalize(node);
} else {
if (optimized) {
Expand Down
8 changes: 4 additions & 4 deletions js/jquery.terminal.js
Expand Up @@ -41,7 +41,7 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Sat, 20 Apr 2024 17:22:28 +0000
* Date: Sat, 20 Apr 2024 17:30:08 +0000
*/
/* global define, Map, BigInt */
/* eslint-disable */
Expand Down Expand Up @@ -5308,7 +5308,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Sat, 20 Apr 2024 17:22:28 +0000',
date: 'Sat, 20 Apr 2024 17:30:08 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -9273,8 +9273,8 @@
setTimeout(function() {
if (is_partial || options.newline === false) {
// HACK: fix sequance of animations #930
index = self.last_index();
var node = output.find('[data-index="' + index + '"]');
var idx = self.last_index();
var node = output.find('[data-index="' + idx + '"]');
options.finalize(node);
} else {
if (optimized) {
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 446beb9

Please sign in to comment.