mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
hotkeys: Replace C with x for composing PM.
Pressing the 'x' key can now be used to compose a PM. Pressing the 'C' key displays a modal that shows a deprecation notice. Fixes #6548.
This commit is contained in:
committed by
Tim Abbott
parent
af004fa6f5
commit
1227857de6
@@ -232,7 +232,7 @@ exports.then_send_message = function (type, params) {
|
||||
if (type === "stream") {
|
||||
casper.page.sendEvent('keypress', "c");
|
||||
} else if (type === "private") {
|
||||
casper.page.sendEvent('keypress', "C");
|
||||
casper.page.sendEvent('keypress', "x");
|
||||
} else {
|
||||
casper.test.assertTrue(false, "send_message got valid message type");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user