[fix] Fix format of settings template + add information about shortcuts
There was an extra comma at the end of shortcut list, this was breaking Etherpad startup. This is an adjustment to #2891.
This commit is contained in:
parent
cf686282ef
commit
688e8f37a3
|
@ -75,26 +75,26 @@
|
||||||
|
|
||||||
/* Pad Shortcut Keys */
|
/* Pad Shortcut Keys */
|
||||||
"padShortcutEnabled" : {
|
"padShortcutEnabled" : {
|
||||||
"altF9" : true,
|
"altF9" : true, /* focus on the File Menu and/or editbar */
|
||||||
"altC" : true,
|
"altC" : true, /* focus on the Chat window */
|
||||||
"cmdShift2" : true,
|
"cmdShift2" : true, /* shows a gritter popup showing a line author */
|
||||||
"delete" : true,
|
"delete" : true,
|
||||||
"return" : true,
|
"return" : true,
|
||||||
"cmdS" : true,
|
"cmdS" : true, /* save a revision */
|
||||||
"tab" : true,
|
"tab" : true, /* indent */
|
||||||
"cmdZ" : true,
|
"cmdZ" : true, /* undo/redo */
|
||||||
"cmdY" : true,
|
"cmdY" : true, /* redo */
|
||||||
"cmdI" : true,
|
"cmdI" : true, /* italic */
|
||||||
"cmdB" : true,
|
"cmdB" : true, /* bold */
|
||||||
"cmdU" : true,
|
"cmdU" : true, /* underline */
|
||||||
"cmd5" : true,
|
"cmd5" : true, /* strike through */
|
||||||
"cmdShiftL" : true,
|
"cmdShiftL" : true, /* unordered list */
|
||||||
"cmdShiftN" : true,
|
"cmdShiftN" : true, /* ordered list */
|
||||||
"cmdShiftC" : true,
|
"cmdShiftC" : true, /* clear authorship */
|
||||||
"cmdH" : true,
|
"cmdH" : true, /* backspace */
|
||||||
"ctrlHome" : true,
|
"ctrlHome" : true, /* scroll to top of pad */
|
||||||
"pageUp" : true,
|
"pageUp" : true,
|
||||||
"pageDown" : true,
|
"pageDown" : true
|
||||||
},
|
},
|
||||||
|
|
||||||
/* Should we suppress errors from being visible in the default Pad Text? */
|
/* Should we suppress errors from being visible in the default Pad Text? */
|
||||||
|
|
Loading…
Reference in New Issue