This commit is contained in:
Toks
2013-09-12 19:41:26 -04:00
parent 14cb5ef20d
commit 1d3a9e65f4

View File

@@ -219,6 +219,10 @@
var render_tag = function(list, tag) {
var $link = $("<a/>").addClass("tag-type-" + tag.category).text(tag.label);
$link.attr("href", "/posts?tags=" + encodeURIComponent(tag.value));
$link.click(function(e) {
e.preventDefault();
});
var count;
if (tag.post_count >= 1000) {