mirror of https://github.com/zulip/zulip.git
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:
parent
738f457309
commit
2cc96d981e
|
@ -457,6 +457,11 @@ export function initialize() {
|
||||||
recent_topics.update_filters_view();
|
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) => {
|
$("body").on("click", "td.recent_topic_name", (e) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
window.location.href = $(e.currentTarget).find("a").attr("href");
|
window.location.href = $(e.currentTarget).find("a").attr("href");
|
||||||
|
|
Loading…
Reference in New Issue