mirror of https://github.com/zulip/zulip.git
recent_topics: Let browser handle the inputs we didn't.
For inputs to recent topics which were unhandled, we return false so that the browser can handle them. This also fixes the issue of search box not able input `t` key.
This commit is contained in:
parent
760e4fc1e7
commit
5fc51d0a4d
|
@ -634,7 +634,7 @@ exports.change_focused_element = function (e, input_key) {
|
|||
current_focus_elem.trigger("focus");
|
||||
}
|
||||
|
||||
return true;
|
||||
return false;
|
||||
};
|
||||
|
||||
window.recent_topics = exports;
|
||||
|
|
Loading…
Reference in New Issue