From bcecddd5bd1072ab6882808b86a16d541f68d554 Mon Sep 17 00:00:00 2001 From: logsol Date: Mon, 22 Jun 2015 12:04:33 +0200 Subject: [PATCH] added current milestone url to not_available overview --- static/html/not_available.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/html/not_available.html b/static/html/not_available.html index 40bdb04..83f4670 100644 --- a/static/html/not_available.html +++ b/static/html/not_available.html @@ -75,7 +75,7 @@ $.get(url, function( data ) { var progress = parseInt(milestone.closed_issues) / (parseInt(milestone.open_issues)+parseInt(milestone.closed_issues)); progress = Math.round(progress * 100); - $("#m-title").text(milestone.title); + $("#m-title").html('' + milestone.title + ''); $("#m-open").text(milestone.open_issues); $("#m-closed").text(milestone.closed_issues); $("#m-progress").text(progress + "%");