recent_topics: Go to stream narrow on stream cell click.

Increase clickable area in recent topics stream cell to imporove
UX.
This commit is contained in:
pilgrim2308 2021-02-18 11:14:09 +05:30 committed by Tim Abbott
parent 738f457309
commit 2cc96d981e
1 changed files with 5 additions and 0 deletions

View File

@ -457,6 +457,11 @@ export function initialize() {
recent_topics.update_filters_view();
});
$("body").on("click", "td.recent_topic_stream", (e) => {
e.stopPropagation();
window.location.href = $(e.currentTarget).find("a").attr("href");
});
$("body").on("click", "td.recent_topic_name", (e) => {
e.stopPropagation();
window.location.href = $(e.currentTarget).find("a").attr("href");