Remove the 'void' option from tag_object link.

Now that all <a> tags are pointy, there is no need for this fake link.
Its only purpose was to make <a>s that had an onclick but no
url get the ol' pointy.
This commit is contained in:
voussoir 2020-01-14 23:12:43 -08:00
parent 47c0a7221c
commit b22516cf01

View file

@ -9,7 +9,6 @@
None = no link, just a <span> None = no link, just a <span>
'search' = link to /search?tag_musts=tagname 'search' = link to /search?tag_musts=tagname
'info' = link to /tags/tagname 'info' = link to /tags/tagname
'void' = javascript:void(0)
with_alt_description: with_alt_description:
True: Include the description in the alt text True: Include the description in the alt text
--> -->
@ -25,7 +24,6 @@
{% set href = { {% set href = {
"search": "/search?tag_musts=" + tag.name, "search": "/search?tag_musts=" + tag.name,
"info": "/tag/" + tag.name, "info": "/tag/" + tag.name,
"void": "javascript:void(0)",
None: None, None: None,
}.get(link, link) }.get(link, link)
%} %}