From 75e01a3e620c88f8ff8a63545877fce4654a7110 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Tue, 9 Oct 2012 18:10:05 -0400 Subject: [PATCH] Rename persistent_zephyr_id to persistent_message_id. (imported from commit f8eca5fcec920f61aaf59b91ec7d11722da62164) --- zephyr/static/js/narrow.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zephyr/static/js/narrow.js b/zephyr/static/js/narrow.js index 328e103de5..7d7df07a4c 100644 --- a/zephyr/static/js/narrow.js +++ b/zephyr/static/js/narrow.js @@ -1,5 +1,5 @@ // For tracking where you were before you narrowed. -var persistent_zephyr_id = 0; +var persistent_message_id = 0; // Narrowing predicate, or 'false' for the home view. var narrowed = false; @@ -8,7 +8,7 @@ function do_narrow(description, filter_function) { narrowed = filter_function; // Your pointer isn't changed when narrowed. - persistent_zephyr_id = selected_message_id; + persistent_message_id = selected_message_id; // Empty the filtered table right before we fill it again clear_table('zfilt'); @@ -103,7 +103,7 @@ function show_all_messages() { $("#currently_narrowed_to").html(""); // Includes scrolling. - select_and_show_by_id(persistent_zephyr_id); + select_and_show_by_id(persistent_message_id); scroll_to_selected(); }