Tweaks to tag relations

* Fixed tag relations background if there are no related tags
* Related tags link to search (LMB adds tag, MMB searches for it in new tab)
This commit is contained in:
Marcin Kurczewski 2014-03-10 01:37:26 +01:00
parent 394c06a1c5
commit fba6a50251

View file

@ -292,7 +292,7 @@ function attachTagIt(target)
$.each(data.tags.slice(0, 10), function(i, tag) $.each(data.tags.slice(0, 10), function(i, tag)
{ {
var link = $('<a>'); var link = $('<a>');
link.attr('href', '#'); link.attr('href', '/posts/' + tag.name + '/');
link.text('#' + tag.name); link.text('#' + tag.name);
link.click(function(e) link.click(function(e)
{ {
@ -310,6 +310,7 @@ function attachTagIt(target)
div.addClass('related-tags'); div.addClass('related-tags');
div.append('<p>Related tags:</p>'); div.append('<p>Related tags:</p>');
div.append(list); div.append(list);
div.append('<div class="clear"></div>');
div.insertAfter(targetTagit).hide().slideDown(); div.insertAfter(targetTagit).hide().slideDown();
}); });
}, },