From 39895b4c7da03e9d8b3525eb56d5a98d067e7203 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 2 Jun 2015 11:12:14 -0400 Subject: [PATCH] Also forward help link as html instead of text re: #2674 --- js/id/ui/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/id/ui/help.js b/js/id/ui/help.js index 3ce938746..f16dc07b2 100644 --- a/js/id/ui/help.js +++ b/js/id/ui/help.js @@ -86,7 +86,7 @@ iD.ui.Help = function(context) { .on('click', function() { clickHelp(docs[i + 1], i + 1); }); - nextLink.append('span').text(docs[i + 1].title); + nextLink.append('span').html(docs[i + 1].title); nextLink.append('span').attr('class', 'icon forward blue'); } }