From b22516cf01c0c30a4bfdbef1bdd952e9fa2ae425 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Tue, 14 Jan 2020 23:12:43 -0800 Subject: [PATCH] Remove the 'void' option from tag_object link. Now that all tags are pointy, there is no need for this fake link. Its only purpose was to make s that had an onclick but no url get the ol' pointy. --- frontends/etiquette_flask/templates/tag_object.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontends/etiquette_flask/templates/tag_object.html b/frontends/etiquette_flask/templates/tag_object.html index fae4ff4..a7287df 100644 --- a/frontends/etiquette_flask/templates/tag_object.html +++ b/frontends/etiquette_flask/templates/tag_object.html @@ -9,7 +9,6 @@ None = no link, just a 'search' = link to /search?tag_musts=tagname 'info' = link to /tags/tagname - 'void' = javascript:void(0) with_alt_description: True: Include the description in the alt text --> @@ -25,7 +24,6 @@ {% set href = { "search": "/search?tag_musts=" + tag.name, "info": "/tag/" + tag.name, - "void": "javascript:void(0)", None: None, }.get(link, link) %}