Merge pull request #22283 from thekad/issue-22044

Removing duplicate custom-jekyll js
This commit is contained in:
Kubernetes Prow Robot
2020-07-14 09:55:21 -07:00
committed by GitHub
3 changed files with 0 additions and 17 deletions
-15
View File
@@ -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);
});
});
});