diff --git a/templates/zephyr/home.html b/templates/zephyr/home.html
index 1580585b1d..044a52bbac 100644
--- a/templates/zephyr/home.html
+++ b/templates/zephyr/home.html
@@ -74,7 +74,7 @@
diff --git a/zephyr/jstemplates/message.html b/zephyr/jstemplates/message.html
index c459a1cedb..9374b4ea37 100644
--- a/zephyr/jstemplates/message.html
+++ b/zephyr/jstemplates/message.html
@@ -41,7 +41,7 @@
+ title="Huddle with you and {{display_reply_to}}">You and {{display_reply_to}}
{{/if}}
{{/include_recipient}}
diff --git a/zephyr/static/js/narrow.js b/zephyr/static/js/narrow.js
index 621bfbb38e..eb438dc97a 100644
--- a/zephyr/static/js/narrow.js
+++ b/zephyr/static/js/narrow.js
@@ -61,7 +61,7 @@ exports.target = function (id) {
};
exports.all_personals = function () {
- do_narrow("All huddles with you", function (other) {
+ do_narrow(" You and anyone else", function (other) {
return other.type === "personal" || other.type === "huddle";
});
};
@@ -85,7 +85,7 @@ exports.by_recipient = function () {
switch (message.type) {
case 'personal':
// Narrow to personals with a specific user
- do_narrow(" " + message.display_reply_to, function (other) {
+ do_narrow(" You and " + message.display_reply_to, function (other) {
return (other.type === 'personal') &&
(((other.display_recipient.email === message.display_recipient.email)
&& (other.sender_email === message.sender_email)) ||
@@ -95,7 +95,7 @@ exports.by_recipient = function () {
break;
case 'huddle':
- do_narrow(" " + message.display_reply_to, function (other) {
+ do_narrow(" You and " + message.display_reply_to, function (other) {
return (other.type === "personal" || other.type === "huddle")
&& other.reply_to === message.reply_to;
});