Skip to content

Commit

Permalink
fix longer line (eslint)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Apr 2, 2018
1 parent a05934b commit 6babc80
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 11 deletions.
9 changes: 6 additions & 3 deletions js/jquery.terminal-1.12.1.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Copyright (c) 2007-2013 Alexandru Marasteanu <hello at alexei dot ro>
* licensed under 3 clause BSD license
*
* Date: Mon, 02 Apr 2018 12:07:58 +0000
* Date: Mon, 02 Apr 2018 13:24:02 +0000
*/

/* TODO:
Expand Down Expand Up @@ -2867,7 +2867,7 @@
}
$.terminal = {
version: 'DEV',
date: 'Mon, 02 Apr 2018 12:07:58 +0000',
date: 'Mon, 02 Apr 2018 13:24:02 +0000',
// colors from http://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -4582,7 +4582,10 @@
if (array[i] === '' || array[i] === '\r') {
output_buffer.push('<span></span>');
} else {
output_buffer.push($.terminal.format(array[i], format_options));
output_buffer.push($.terminal.format(
array[i],
format_options
));
}
}
} else {
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal-1.12.1.min.js

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion js/jquery.terminal-src.js
Original file line number Diff line number Diff line change
Expand Up @@ -4582,7 +4582,10 @@
if (array[i] === '' || array[i] === '\r') {
output_buffer.push('<span></span>');
} else {
output_buffer.push($.terminal.format(array[i], format_options));
output_buffer.push($.terminal.format(
array[i],
format_options
));
}
}
} else {
Expand Down
9 changes: 6 additions & 3 deletions js/jquery.terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Copyright (c) 2007-2013 Alexandru Marasteanu <hello at alexei dot ro>
* licensed under 3 clause BSD license
*
* Date: Mon, 02 Apr 2018 12:07:58 +0000
* Date: Mon, 02 Apr 2018 13:24:02 +0000
*/

/* TODO:
Expand Down Expand Up @@ -2867,7 +2867,7 @@
}
$.terminal = {
version: 'DEV',
date: 'Mon, 02 Apr 2018 12:07:58 +0000',
date: 'Mon, 02 Apr 2018 13:24:02 +0000',
// colors from http://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -4582,7 +4582,10 @@
if (array[i] === '' || array[i] === '\r') {
output_buffer.push('<span></span>');
} else {
output_buffer.push($.terminal.format(array[i], format_options));
output_buffer.push($.terminal.format(
array[i],
format_options
));
}
}
} else {
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal.min.js

Large diffs are not rendered by default.

0 comments on commit 6babc80

Please sign in to comment.