From 24fefbe5546e9ae3469ccde1ab292ae068f660b2 Mon Sep 17 00:00:00 2001 From: Kálmán Viktor <kviktor@cloud.bme.hu> Date: Mon, 30 Jun 2014 16:18:07 +0200 Subject: [PATCH] dashboard: fix some errors during activity equality --- circle/dashboard/static/dashboard/vm-details.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle/dashboard/static/dashboard/vm-details.js b/circle/dashboard/static/dashboard/vm-details.js index 3805606..a6578aa 100644 --- a/circle/dashboard/static/dashboard/vm-details.js +++ b/circle/dashboard/static/dashboard/vm-details.js @@ -330,7 +330,7 @@ function decideActivityRefresh() { /* unescapes html got via the request, also removes whitespaces and replaces all ' with " */ function unescapeHTML(html) { - return html.replace(/</g,'<').replace(/>/g,'>').replace(/&/g,'&').replace(/–/g, "–").replace(/\//g, "").replace(/'/g, '"').replace(/ /g, ''); + return html.replace(/</g,'<').replace(/>/g,'>').replace(/&/g,'&').replace(/–/g, "–").replace(/\//g, "").replace(/'/g, '"').replace(/'/g, "'").replace(/ /g, ''); } /* the html page contains some tags that were modified via js (titles for example), we delete these -- libgit2 0.26.0