summaryrefslogtreecommitdiffstats
path: root/userContent/reproducible/static/pkgset.js
diff options
context:
space:
mode:
authorValerie R Young <spectranaut@riseup.net>2017-03-22 12:46:17 -0400
committerHolger Levsen <holger@layer-acht.org>2017-03-22 19:04:15 +0100
commitce00640954839d8a1f4142ff610469943833cb6e (patch)
treecfd2d7c11989e5119c74c2cab3396ebfbd5d1c4b /userContent/reproducible/static/pkgset.js
parent566813f60f9fb715808eafa4f377e333dbf920ba (diff)
downloadjenkins.debian.net-ce00640954839d8a1f4142ff610469943833cb6e.tar.xz
Revert "reproducible debian: show the "show all" button when summary tag supported"
This reverts commit 1b4dc1b3191e3623a0eeb7cacef80be1ab71d0a2. Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'userContent/reproducible/static/pkgset.js')
-rw-r--r--userContent/reproducible/static/pkgset.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/userContent/reproducible/static/pkgset.js b/userContent/reproducible/static/pkgset.js
deleted file mode 100644
index 530679a3..00000000
--- a/userContent/reproducible/static/pkgset.js
+++ /dev/null
@@ -1,9 +0,0 @@
-window.onload = function () {
- var userAgent = navigator.userAgent.toLowerCase();
- var version = /firefox\/(\d+)/.exec(userAgent);
- if (!version || (version.length === 2 && version[1] > 48)) {
- // Reveal the "expand-all-pkgset" button when not in firefox (where
- // summary tags are not supported)
- document.getElementById("expand-all-pkgsets").style.display='inline';
- }
-}