From 00a45487da0719b3db69af51df55fec3958b73a4 Mon Sep 17 00:00:00 2001 From: Jakob Schnitzer Date: Sat, 17 Dec 2022 08:55:33 +0100 Subject: [PATCH] ./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. --- webpack/js/app.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/webpack/js/app.js b/webpack/js/app.js index 76170fe0..586fbb06 100644 --- a/webpack/js/app.js +++ b/webpack/js/app.js @@ -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() { const buttons = $(".download-btn"); if (buttons.length <= 0) { @@ -125,7 +116,6 @@ function hideThingsForWindows() { } $(function () { - initBadges(); initDownloadButton(); initInstallRow(); initGoogleSearch();