From e7dab1f757d7e68251afb628337aa40b35daec7b Mon Sep 17 00:00:00 2001 From: Waseem Daher Date: Tue, 9 Oct 2012 15:10:20 -0400 Subject: [PATCH] Set title text in narrowbar as well (this lets us mouseover if it gets too long). (imported from commit be1e1f604016c2964d7b89cc50bfbc4113215819) --- zephyr/static/js/narrow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/static/js/narrow.js b/zephyr/static/js/narrow.js index 8ed9b277e2..6f35bc72f1 100644 --- a/zephyr/static/js/narrow.js +++ b/zephyr/static/js/narrow.js @@ -20,7 +20,7 @@ function do_narrow(description, filter_function) { $("#show_all_messages").removeAttr("disabled"); $("#narrowbox").show(); $("#main_div").addClass("narrowed_view"); - $("#currently_narrowed_to").html(description); + $("#currently_narrowed_to").html(description).attr("title", description); $("#zhome").removeClass("focused_table"); select_and_show_by_id(selected_zephyr_id);