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:
Aman Agrawal 2020-09-24 16:03:12 +05:30 committed by Tim Abbott
parent 760e4fc1e7
commit 5fc51d0a4d
1 changed files with 1 additions and 1 deletions

View File

@ -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;