From f34fe97ba0da469cb3fb521369a3811578d2e0cf Mon Sep 17 00:00:00 2001 From: Jorge Gallegos Date: Thu, 2 Jul 2020 12:12:15 -0500 Subject: [PATCH] Removing duplicate custom-jekyll js After docsy theme got merged these scripts aren't needed anymore. Confirmed after removing it (and all ` - {{ with .Params.js }}{{ range (split . ",") }} {{ end }}{{ else }}{{ end }} \ No newline at end of file diff --git a/static/js/custom-jekyll/tags.js b/static/js/custom-jekyll/tags.js deleted file mode 100644 index d99660ee60..0000000000 --- a/static/js/custom-jekyll/tags.js +++ /dev/null @@ -1,15 +0,0 @@ -$( document ).ready(function() { - // Shows permalink when term name is hovered over - $(".glossary-injector").each(function() { - var placeholder = $("#" + $(this).data("placeholder-id")); - var originalContent = placeholder.html(); - - var glossaryDef = $($(this).find(".injector-def")[0]).html(); - - $(this).mouseenter(function() { - placeholder.html(glossaryDef); - }).mouseleave(function(){ - placeholder.html(originalContent); - }); - }); -});