Skip to content

Commit

Permalink
left_sidebar: Gear icon now redirects to '/#streams/subscribed'.
Browse files Browse the repository at this point in the history
The gear icon above the streamlist now redirects to
'/#streams/subscribed' instead of '/#streams/all'.
  • Loading branch information
vinitS101 authored and timabbott committed May 14, 2019
1 parent 64ad031 commit e8c1523
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions static/js/click_handlers.js
Expand Up @@ -551,12 +551,7 @@ exports.initialize = function () {

$("#streams_inline_cog").click(function (e) {
e.stopPropagation();
// For guest users, "All streams" is disabled
if (page_params.is_guest) {
hashchange.go_to_location('streams/subscribed');
} else {
hashchange.go_to_location('streams/all');
}
hashchange.go_to_location('streams/subscribed');
});

$("#streams_filter_icon").click(function (e) {
Expand Down

0 comments on commit e8c1523

Please sign in to comment.