diff --git a/templates/zephyr/index.html b/templates/zephyr/index.html index 5993d537b6..8b1f7aa74f 100644 --- a/templates/zephyr/index.html +++ b/templates/zephyr/index.html @@ -117,6 +117,7 @@ var people_list = [
{# Special-case this link so we don't actually go to page top. #}
  • Home ()
  • +
  • All messages ()
  • All private messages ()

  • diff --git a/zephyr/static/js/narrow.js b/zephyr/static/js/narrow.js index 6eb656e359..86918c309a 100644 --- a/zephyr/static/js/narrow.js +++ b/zephyr/static/js/narrow.js @@ -257,7 +257,9 @@ exports.activate = function (operators, opts) { $("ul.filters li").removeClass('active-filter'); if (operators.length === 1) { - if (operators[0][0] === "stream") { + if (operators[0][0] === 'in' && operators[0][1] === 'all') { + $('#filtall').addClass('active-filter'); + } else if (operators[0][0] === "stream") { $("#stream_filters li[data-name='" + encodeURIComponent(operators[0][1]) + "']").addClass('active-filter'); } else if (operators[0][0] === "is" && operators[0][1] === "private-message") { $("#filtpers").addClass('active-filter');