Skip to content

Commit

Permalink
fix lint error #772, #768
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed May 3, 2022
1 parent 4514ba7 commit 08819a8
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions js/jquery.terminal-2.32.1.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Tue, 03 May 2022 14:01:12 +0000
* Date: Tue, 03 May 2022 14:04:01 +0000
*/
/* global define, Map */
/* eslint-disable */
Expand Down Expand Up @@ -5186,7 +5186,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Tue, 03 May 2022 14:01:12 +0000',
date: 'Tue, 03 May 2022 14:04:01 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -5732,7 +5732,6 @@
if (data.last && last_bracket && chr !== ']') {
output += ']';
}
console.log({output, len: output.length, data});
new_index = data.index + chr.length - 1;
}
if (keep_words) {
Expand Down Expand Up @@ -8904,7 +8903,8 @@
var bottom = self.is_bottom();
var interval = setInterval(function() {
if (!skip) {
var chr = $.terminal.substring(formattted, char_i, char_i + 1);
var chr = $.terminal
.substring(formattted, char_i, char_i + 1);
if (options.mask) {
var mask = command_line.mask();
if (typeof mask === 'string') {
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal-2.32.1.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/jquery.terminal-src.js
Original file line number Diff line number Diff line change
Expand Up @@ -5732,7 +5732,6 @@
if (data.last && last_bracket && chr !== ']') {
output += ']';
}
console.log({output, len: output.length, data});
new_index = data.index + chr.length - 1;
}
if (keep_words) {
Expand Down Expand Up @@ -8904,7 +8903,8 @@
var bottom = self.is_bottom();
var interval = setInterval(function() {
if (!skip) {
var chr = $.terminal.substring(formattted, char_i, char_i + 1);
var chr = $.terminal
.substring(formattted, char_i, char_i + 1);
if (options.mask) {
var mask = command_line.mask();
if (typeof mask === 'string') {
Expand Down
8 changes: 4 additions & 4 deletions js/jquery.terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Tue, 03 May 2022 14:01:12 +0000
* Date: Tue, 03 May 2022 14:04:01 +0000
*/
/* global define, Map */
/* eslint-disable */
Expand Down Expand Up @@ -5186,7 +5186,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Tue, 03 May 2022 14:01:12 +0000',
date: 'Tue, 03 May 2022 14:04:01 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -5732,7 +5732,6 @@
if (data.last && last_bracket && chr !== ']') {
output += ']';
}
console.log({output, len: output.length, data});
new_index = data.index + chr.length - 1;
}
if (keep_words) {
Expand Down Expand Up @@ -8904,7 +8903,8 @@
var bottom = self.is_bottom();
var interval = setInterval(function() {
if (!skip) {
var chr = $.terminal.substring(formattted, char_i, char_i + 1);
var chr = $.terminal
.substring(formattted, char_i, char_i + 1);
if (options.mask) {
var mask = command_line.mask();
if (typeof mask === 'string') {
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 08819a8

Please sign in to comment.