Remove disabled summarization code

This experiment has been disabled for everyone for a while: if we
bring something like this back, it is not likely to be exactly the same,
and will be different enough to require a different implementation.

As it is, the summarization code was making a few code paths (rendering
especially) more complex, and is worth removing for simplicity's sake.

(imported from commit 6ac8cdc9f7077a5a1da01ab4268aba3db0bc43f8)
This commit is contained in:
Leo Franchi
2014-02-03 16:48:25 -05:00
committed by Jessica McKellar
parent f128ff6d53
commit 748e5b6da6
14 changed files with 6 additions and 349 deletions

View File

@@ -54,7 +54,7 @@ exports.get_table = function (table_name) {
exports.get_closest_row = function (element) {
// This gets the closest message row to an element, whether it's
// a summary bar, recipient bar, or message. With our current markup,
// a recipient bar or message. With our current markup,
// this is the most reliable way to do it.
return $(element).closest("div.message_row, div.recipient_row");
};