diff options
author | John McLear <john@mclear.co.uk> | 2015-04-05 13:42:26 +0100 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2015-04-05 13:42:26 +0100 |
commit | e49bb4017c5cd054ca2b1880c78148e10417de1f (patch) | |
tree | 5d303d7123d3cd2ae3a41d963d7059b0b96e1186 /src/static/js | |
parent | db0bcdd696282ec5d8ab7ab4c2cbeb5043131a96 (diff) | |
download | etherpad-lite-e49bb4017c5cd054ca2b1880c78148e10417de1f.zip |
use ctrl shift 2 instead of alt a
Diffstat (limited to 'src/static/js')
-rw-r--r-- | src/static/js/ace2_inner.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/static/js/ace2_inner.js b/src/static/js/ace2_inner.js index b37c737c..7773074e 100644 --- a/src/static/js/ace2_inner.js +++ b/src/static/js/ace2_inner.js @@ -3704,8 +3704,8 @@ function Ace2Inner(){ parent.parent.chat.focus(); evt.preventDefault(); } - if ((!specialHandled) && altKey && shiftKey && keyCode == 65 && type === "keydown"){ - // Alt-Shift-A shows a gritter popup showing a line author + if ((!specialHandled) && evt.ctrlKey && shiftKey && keyCode == 50 && type === "keydown"){ + // Control-Shift-2 shows a gritter popup showing a line author var lineNumber = rep.selEnd[0]; var alineAttrs = rep.alines[lineNumber]; var apool = rep.apool; |