Skip to content

Commit

Permalink
disable links in echo command #768
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Mar 27, 2022
1 parent 38fd30d commit 47a15d3
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion css/jquery.terminal-2.32.1.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/jquery.terminal.css
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,7 @@ terminal .terminal-output > div {
bottom: 0;
left: 0;
right: 0;
z-index: 200;
z-index: -1;
}
.terminal-less {
touch-action: none;
Expand Down
2 changes: 1 addition & 1 deletion css/jquery.terminal.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/jquery.terminal.min.css.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 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: Sat, 26 Mar 2022 16:05:01 +0000
* Date: Sun, 27 Mar 2022 10:38:45 +0000
*/
/* global define, Map */
/* eslint-disable */
Expand Down Expand Up @@ -5154,7 +5154,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Sat, 26 Mar 2022 16:05:01 +0000',
date: 'Sun, 27 Mar 2022 10:38:45 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -8220,6 +8220,7 @@
var options = {
exec: false,
formatters: false,
convertLinks: false,
finalize: function finalize(div) {
a11y_hide(div.addClass('terminal-command'));
fire_event('onEchoCommand', [div, command]);
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal-2.32.1.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/jquery.terminal-src.js
Original file line number Diff line number Diff line change
Expand Up @@ -8220,6 +8220,7 @@
var options = {
exec: false,
formatters: false,
convertLinks: false,
finalize: function finalize(div) {
a11y_hide(div.addClass('terminal-command'));
fire_event('onEchoCommand', [div, command]);
Expand Down
5 changes: 3 additions & 2 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: Sat, 26 Mar 2022 16:05:01 +0000
* Date: Sun, 27 Mar 2022 10:38:45 +0000
*/
/* global define, Map */
/* eslint-disable */
Expand Down Expand Up @@ -5154,7 +5154,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Sat, 26 Mar 2022 16:05:01 +0000',
date: 'Sun, 27 Mar 2022 10:38:45 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -8220,6 +8220,7 @@
var options = {
exec: false,
formatters: false,
convertLinks: false,
finalize: function finalize(div) {
a11y_hide(div.addClass('terminal-command'));
fire_event('onEchoCommand', [div, command]);
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 47a15d3

Please sign in to comment.