Merge pull request #36626 from chengxiangdong/fix

fix: remove unused variable and symbol
pull/37111/head
Kubernetes Prow Robot 2022-09-30 07:14:29 -07:00 committed by GitHub
commit 68aa2e12bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -37,7 +37,6 @@ $( document ).ready(function() {
function updateParams(paramHash) {
var urlWithoutQuery = window.location.href.split('?')[0];
var urlHash = window.location.hash;
window.history.pushState(null,null, urlWithoutQuery + "?" + $.param(paramHash) + window.location.hash);
}
@ -158,7 +157,7 @@ $( document ).ready(function() {
permalink.removeClass("hide");
}).mouseleave(function(){
permalink.addClass("hide");
});;
});
});
};