./webpack: do not hide and fade in badges

This might be more of a personal preference, but I do not see any value in
hiding this content for more than a second.
This commit is contained in:
Jakob Schnitzer 2022-12-17 08:55:33 +01:00
parent 4bd208f50f
commit 00a45487da
1 changed files with 0 additions and 10 deletions

View File

@ -16,15 +16,6 @@ function selectText(text) {
} }
} }
function initBadges() {
let badges = $(".badges li").hide();
if (badges.length > 0) {
window.setTimeout(function () {
badges.fadeIn(500);
}, 1500);
}
}
function initDownloadButton() { function initDownloadButton() {
const buttons = $(".download-btn"); const buttons = $(".download-btn");
if (buttons.length <= 0) { if (buttons.length <= 0) {
@ -125,7 +116,6 @@ function hideThingsForWindows() {
} }
$(function () { $(function () {
initBadges();
initDownloadButton(); initDownloadButton();
initInstallRow(); initInstallRow();
initGoogleSearch(); initGoogleSearch();