Rename zephyr_row to message_row.

(imported from commit 5975c7fe5e792ec294e55764581474fa55f62b70)
This commit is contained in:
Tim Abbott
2012-10-10 10:27:59 -04:00
parent 0bc9287254
commit 27b84f7705
3 changed files with 6 additions and 6 deletions

View File

@@ -1,21 +1,21 @@
function get_next_visible(message_row) {
if (message_row === undefined)
return [];
return message_row.nextAll('.zephyr_row:first');
return message_row.nextAll('.message_row:first');
}
function get_prev_visible(message_row) {
if (message_row === undefined)
return [];
return message_row.prevAll('.zephyr_row:first');
return message_row.prevAll('.message_row:first');
}
function get_first_visible() {
return $('.focused_table .zephyr_row:first');
return $('.focused_table .message_row:first');
}
function get_last_visible() {
return $('.focused_table .zephyr_row:last');
return $('.focused_table .message_row:last');
}
function get_id(message_row) {