From 6618b8b4e35ea1d73e38b7951ff7ded0feae8613 Mon Sep 17 00:00:00 2001 From: Chris Done Date: Fri, 14 Nov 2014 13:57:02 +0100 Subject: [PATCH] Make newly added tag clickable --- templates/package.julius | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/package.julius b/templates/package.julius index 32e1dc4..001b283 100644 --- a/templates/package.julius +++ b/templates/package.julius @@ -79,7 +79,7 @@ $(function(){ if (!tags[normalized]) { var tag = $(''); - tag.find('a').text(normalized); + tag.find('a').text(normalized).attr('href','/tag/' + normalized); $('.tags').prepend(', '); $('.tags').prepend(tag); }