From bccbb427ca180f96278cf06964881191c609a203 Mon Sep 17 00:00:00 2001 From: Frode Petterson Date: Fri, 4 Mar 2016 12:42:01 +0100 Subject: [PATCH] Description is HTML not text Thanks to Realia on the forum for reporting this bug --- popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/popup.js b/popup.js index 2973974..44a12de 100644 --- a/popup.js +++ b/popup.js @@ -23,7 +23,7 @@ * @param {function} done */ self.show = function (desc, $img, done) { - $desc.text(desc); + $desc.html(desc); $img.appendTo($image.html('')); $popup.show(); closed = done;