diff --git a/zephyr/jstemplates/zephyr.html b/zephyr/jstemplates/zephyr.html
index 56290b5b74..43d29a2c24 100644
--- a/zephyr/jstemplates/zephyr.html
+++ b/zephyr/jstemplates/zephyr.html
@@ -1,7 +1,6 @@
{{! Client-side Mustache template for rendering zephyrs.}}
|
- {{#include_recipient}}
{{#is_huddle}}
{{#display_recipient}}{{name}},{{/display_recipient}}
@@ -23,7 +22,6 @@
{{instance}}
{{/is_class}}
- {{/include_recipient}}
|
diff --git a/zephyr/static/js/zephyr.js b/zephyr/static/js/zephyr.js
index 10434c2278..a5b8d0a461 100644
--- a/zephyr/static/js/zephyr.js
+++ b/zephyr/static/js/zephyr.js
@@ -465,23 +465,6 @@ function add_message(index, zephyr) {
}
zephyr.html_content = newline2br(zephyr.content);
- parent = $('#table tr:last-child');
- zephyr_class = parent.find("span.zephyr_class").text();
- zephyr_huddle = parent.find("span.zephyr_huddle_recipient").text();
- zephyr_personal = parent.find("span.zephyr_personal_recipient").text();
- zephyr_instance = parent.find("span.zephyr_instance").text();
-
- if ((zephyr.is_huddle && zephyr_huddle === zephyr.name) ||
- (zephyr.is_personal && zephyr_personal === zephyr.display_recipient) ||
- (zephyr.is_class && zephyr_class === zephyr.display_recipient &&
- zephyr_instance === zephyr.instance)) {
- zephyr.include_recipient = false;
- } else {
- zephyr.include_recipient = true;
- // add a space to the table
- $('#table').append($(' |
').append($(' | ').html('
')));
- }
-
var new_tr = $('
').attr('id', zephyr.id);
$('#table').append(new_tr);
new_tr.append(ich.zephyr(zephyr));