From 27b84f77055ccb267896702924e53a1bc44e5e6d Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 10 Oct 2012 10:27:59 -0400 Subject: [PATCH] Rename zephyr_row to message_row. (imported from commit 5975c7fe5e792ec294e55764581474fa55f62b70) --- zephyr/jstemplates/zephyr.html | 2 +- zephyr/static/js/dom_access.js | 8 ++++---- zephyr/static/styles/zephyr.css | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/zephyr/jstemplates/zephyr.html b/zephyr/jstemplates/zephyr.html index 3b037d9be6..7107442f9a 100644 --- a/zephyr/jstemplates/zephyr.html +++ b/zephyr/jstemplates/zephyr.html @@ -38,7 +38,7 @@ {{/if}} {{/include_recipient}} {{#include_sender}} diff --git a/zephyr/static/js/dom_access.js b/zephyr/static/js/dom_access.js index 8daaed59b4..8000c687a4 100644 --- a/zephyr/static/js/dom_access.js +++ b/zephyr/static/js/dom_access.js @@ -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) { diff --git a/zephyr/static/styles/zephyr.css b/zephyr/static/styles/zephyr.css index 05ec1b7d23..816d73f216 100644 --- a/zephyr/static/styles/zephyr.css +++ b/zephyr/static/styles/zephyr.css @@ -28,7 +28,7 @@ body { padding-right: 30px; } -.zephyr_row { +.message_row { cursor: pointer; }