Transition from tables to divs for the message list.

This breaks our casperjs tests.

(imported from commit c63181c73a24eed4a80bfa56966d1f0871c5edb2)
This commit is contained in:
acrefoot
2013-12-09 14:15:33 -05:00
committed by Tim Abbott
parent 91fc3fb7d7
commit 0d08acaa1b
10 changed files with 118 additions and 135 deletions

View File

@@ -47,7 +47,7 @@ function update_table_stream_color(table, stream_name, color) {
var stream_labels = $("#floating_recipient_bar").add(table).find(".stream_label");
_.each(stream_labels, function (label) {
if ($.trim($(label).text()) === stream_name) {
fixup($(label).parent("td").parent("tr").prev("tr")
fixup($(label).parent("div.selectable_row").prev("div")
.nextUntil(".bookend_tr")
.children(".messagebox_colorblock,.message_header_colorblock"));
}