mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 15:36:16 -04:00
use ctrl shift 2 instead of alt a
This commit is contained in:
parent
db0bcdd696
commit
e49bb4017c
1 changed files with 2 additions and 2 deletions
|
@ -3704,8 +3704,8 @@ function Ace2Inner(){
|
||||||
parent.parent.chat.focus();
|
parent.parent.chat.focus();
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
}
|
}
|
||||||
if ((!specialHandled) && altKey && shiftKey && keyCode == 65 && type === "keydown"){
|
if ((!specialHandled) && evt.ctrlKey && shiftKey && keyCode == 50 && type === "keydown"){
|
||||||
// Alt-Shift-A shows a gritter popup showing a line author
|
// Control-Shift-2 shows a gritter popup showing a line author
|
||||||
var lineNumber = rep.selEnd[0];
|
var lineNumber = rep.selEnd[0];
|
||||||
var alineAttrs = rep.alines[lineNumber];
|
var alineAttrs = rep.alines[lineNumber];
|
||||||
var apool = rep.apool;
|
var apool = rep.apool;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue