Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Aug 24, 2020
1 parent 09f9758 commit 959001a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery.terminal-src.js
Expand Up @@ -3657,7 +3657,7 @@
// CTRL+V don't fire keypress in IE11
skip_insert = ['CTRL+V', 'META+V'].indexOf(key) !== -1;
// only enter will reset history (and down arrow on last command)
if (key.toLowerCase() == 'enter') {
if (key.toLowerCase() === 'enter') {
first_up_history = true;
}
if (reverse_search && clear_reverse_search_key(e)) {
Expand Down

0 comments on commit 959001a

Please sign in to comment.