From 52b3da66683aca21cd708b4f029cd1fda4d7de80 Mon Sep 17 00:00:00 2001 From: Waseem Daher Date: Wed, 13 Mar 2013 00:39:33 -0400 Subject: [PATCH] Make clicking gravatar or "Humbug" take you home. Looks like this was broken in 546063f88d58fb988363e5c89a13507deeb20afd. (imported from commit 077186e60bf7a48742e71bbcb4e705c02f1ddc0a) --- zephyr/static/js/narrow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/static/js/narrow.js b/zephyr/static/js/narrow.js index 8a329714a5..a2adc1e05e 100644 --- a/zephyr/static/js/narrow.js +++ b/zephyr/static/js/narrow.js @@ -436,7 +436,7 @@ exports.restore_home_state = function() { // If we click on the Home link from another nav pane, just go // back to the state you were in (possibly still narrowed) before // you left the Home pane. - if ($('#gear-menu li[title="Home"]').hasClass("active")) { + if (!ui.home_tab_obscured()) { exports.deactivate(); } maybe_scroll_to_selected();