From 5eb359ec836542de262f524d65ac52405cdde9b6 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Tue, 1 Oct 2013 14:43:14 +0200 Subject: Data from MM's REST server may contain HTML-escaped chars --- hyperkitty/static/hyperkitty/js/hyperkitty-frontpage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hyperkitty/static/hyperkitty/js/hyperkitty-frontpage.js b/hyperkitty/static/hyperkitty/js/hyperkitty-frontpage.js index c38ed2f..2ba7d43 100644 --- a/hyperkitty/static/hyperkitty/js/hyperkitty-frontpage.js +++ b/hyperkitty/static/hyperkitty/js/hyperkitty-frontpage.js @@ -44,11 +44,11 @@ function update_list_properties(url) { return; } if (data[name]["display_name"]) { - $(this).find(".list-name").text(data[name]["display_name"]); + $(this).find(".list-name").html(data[name]["display_name"]); } if (data[name]["description"]) { $(this).find(".list-description") - .text(data[name]["description"]); + .html(data[name]["description"]); } }); }, -- cgit