From 8ce8a083bbdbc28375b08c2fcd8e29f822ebea88 Mon Sep 17 00:00:00 2001 From: Waseem Daher Date: Tue, 23 Oct 2012 20:30:58 -0400 Subject: [PATCH] Slightly hackish way of stripping out   in narrowbar tooltips. (imported from commit 414738408cd1e4e53f0268b0851c903c6a1a9eda) --- 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 ea77ac4d6d..2cc8d5d8d5 100644 --- a/zephyr/static/js/narrow.js +++ b/zephyr/static/js/narrow.js @@ -48,7 +48,7 @@ function do_narrow(icon, description, filter_function) { $(".narrowed_to_bar").show(); $("#loading_control").hide(); $("#main_div").addClass("narrowed_view"); - $("#currently_narrowed_to").html(icon + " " + description).attr("title", description); + $("#currently_narrowed_to").html(icon + " " + description).attr("title", description.replace(/ /g, "")); $("#zhome").removeClass("focused_table"); // Indicate both which message is persistently selected and which