summaryrefslogtreecommitdiffstats
path: root/userContent/reproducible/static/pkgset.js
diff options
context:
space:
mode:
Diffstat (limited to 'userContent/reproducible/static/pkgset.js')
-rw-r--r--userContent/reproducible/static/pkgset.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/userContent/reproducible/static/pkgset.js b/userContent/reproducible/static/pkgset.js
new file mode 100644
index 00000000..530679a3
--- /dev/null
+++ b/userContent/reproducible/static/pkgset.js
@@ -0,0 +1,9 @@
+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';
+ }
+}