mirror of https://github.com/zulip/zulip.git
hotkey: Fix escape key when editing topic.
Apparently, the changes in fe2adeeee1
to
fix a Firefox focus bug accidentally had the side effect of removing
the topic text box from the area being considered, resulting in the
escape key no longer working to end the message edit from within that
text box.
This commit is contained in:
parent
1c81538570
commit
2756706149
|
@ -215,7 +215,8 @@ exports.process_escape_key = function (e) {
|
|||
// Using this definition of "row" instead of "current_msg_list.selected_row()"
|
||||
// because it returns a more complete object.
|
||||
// Necessary for refocusing on message list in Firefox.
|
||||
row = $(".message_edit_content").filter(":focus").closest(".message_row");
|
||||
var message_edit_inputs = $(".message_edit_content, .message_edit_topic");
|
||||
row = message_edit_inputs.filter(":focus").closest(".message_row");
|
||||
row.find('.message_edit_content').blur();
|
||||
message_edit.end(row);
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue