Skip to content

Commit

Permalink
alow to use doubleTab == false #405
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Jun 30, 2018
1 parent e950de2 commit 87614d0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions js/jquery.terminal-1.16.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: Sat, 30 Jun 2018 12:25:02 +0000
* Date: Sat, 30 Jun 2018 12:28:07 +0000
*/

/* TODO:
Expand Down Expand Up @@ -2994,7 +2994,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Sat, 30 Jun 2018 12:25:02 +0000',
date: 'Sat, 30 Jun 2018 12:28:07 +0000',
// colors from http://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -6090,7 +6090,7 @@
} else {
return ret;
}
} else {
} else if (options.doubleTab !== false) {
echo_command();
var text = matched.reverse().join('\t');
self.echo($.terminal.escape_brackets(text), {
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal-1.16.1.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/jquery.terminal-src.js
Original file line number Diff line number Diff line change
Expand Up @@ -6090,7 +6090,7 @@
} else {
return ret;
}
} else {
} else if (options.doubleTab !== false) {
echo_command();
var text = matched.reverse().join('\t');
self.echo($.terminal.escape_brackets(text), {
Expand Down
6 changes: 3 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: Sat, 30 Jun 2018 12:25:02 +0000
* Date: Sat, 30 Jun 2018 12:28:07 +0000
*/

/* TODO:
Expand Down Expand Up @@ -2994,7 +2994,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Sat, 30 Jun 2018 12:25:02 +0000',
date: 'Sat, 30 Jun 2018 12:28:07 +0000',
// colors from http://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -6090,7 +6090,7 @@
} else {
return ret;
}
} else {
} else if (options.doubleTab !== false) {
echo_command();
var text = matched.reverse().join('\t');
self.echo($.terminal.escape_brackets(text), {
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal.min.js

Large diffs are not rendered by default.

0 comments on commit 87614d0

Please sign in to comment.