Skip to content

Commit

Permalink
fix jumping on right click (context menu) #399
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed May 20, 2018
1 parent aa6b85e commit a44501f
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* fix $.terminal.columns [#394](https://github.com/jcubic/jquery.terminal/issues/394)
* fix rows() when using --size [#398](https://github.com/jcubic/jquery.terminal/issues/398)
* fix null in JSON hash
* fix jumping on right click (context menu) [#399](https://github.com/jcubic/jquery.terminal/issues/399)

## 1.15.0

Expand Down
3 changes: 2 additions & 1 deletion css/jquery.terminal-1.15.0.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Copyright (c) 2011-2018 Jakub Jankiewicz <http://jcubic.pl>
* Released under the MIT license
*
* Date: Sun, 20 May 2018 12:43:03 +0000
* Date: Sun, 20 May 2018 14:08:01 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
Expand Down Expand Up @@ -79,6 +79,7 @@ body.terminal {
}
.terminal > div {
overflow: hidden;
height: 100%;
}
.terminal > .resizer, .terminal > .font .resizer {
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal-1.15.0.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions css/jquery.terminal-src.css
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ body.terminal {
}
.terminal > div {
overflow: hidden;
height: 100%;
}
.terminal > .resizer, .terminal > .font .resizer {
position: absolute;
Expand Down
3 changes: 2 additions & 1 deletion css/jquery.terminal.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Copyright (c) 2011-2018 Jakub Jankiewicz <http://jcubic.pl>
* Released under the MIT license
*
* Date: Sun, 20 May 2018 12:43:03 +0000
* Date: Sun, 20 May 2018 14:08:01 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
Expand Down Expand Up @@ -79,6 +79,7 @@ body.terminal {
}
.terminal > div {
overflow: hidden;
height: 100%;
}
.terminal > .resizer, .terminal > .font .resizer {
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/jquery.terminal-1.15.0.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: Sun, 20 May 2018 13:05:02 +0000
* Date: Sun, 20 May 2018 14:08:00 +0000
*/

/* TODO:
Expand Down Expand Up @@ -2872,7 +2872,7 @@
}
$.terminal = {
version: 'DEV',
date: 'Sun, 20 May 2018 13:05:02 +0000',
date: 'Sun, 20 May 2018 14:08:00 +0000',
// colors from http://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal-1.15.0.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 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: Sun, 20 May 2018 13:05:02 +0000
* Date: Sun, 20 May 2018 14:08:00 +0000
*/

/* TODO:
Expand Down Expand Up @@ -2872,7 +2872,7 @@
}
$.terminal = {
version: 'DEV',
date: 'Sun, 20 May 2018 13:05:02 +0000',
date: 'Sun, 20 May 2018 14:08:00 +0000',
// colors from http://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal.min.js

Large diffs are not rendered by default.

0 comments on commit a44501f

Please sign in to comment.