From f938b039dc9748ad2f3f29cd05c598096f6cef0c Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Tue, 28 Jun 2022 19:01:02 +0200 Subject: integrate fixes by Jacob K The original repo of the fixes was: https://codeberg.org/JacobK/site-fixes --- .../jira-scrollable.js | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/bugs-mojang-com-fix-jira-display/jira-scrollable.js (limited to 'src/bugs-mojang-com-fix-jira-display/jira-scrollable.js') diff --git a/src/bugs-mojang-com-fix-jira-display/jira-scrollable.js b/src/bugs-mojang-com-fix-jira-display/jira-scrollable.js new file mode 100644 index 0000000..81ab577 --- /dev/null +++ b/src/bugs-mojang-com-fix-jira-display/jira-scrollable.js @@ -0,0 +1,26 @@ +/** + * SPDX-License-Identifier: CC0-1.0 + * + * Make Jira pages on bugs.mojang.com scrollable without nonfree js. + * + * Copyright (C) 2022 Wojtek Kosior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the CC0 1.0 Universal License as published by + * the Creative Commons Corporation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * CC0 1.0 Universal License for more details. + */ + +/* Use with: https://bugs.mojang.com/browse/* */ + +/* Make the view scrollable. */ + +Object.assign(document.body.style, { + width: "100vw", + height: "100vh", + overflow: "scroll" +}); -- cgit v1.2.3 49bc7761331a15940dd65ff773e0c'/>
path: root/nix/boost
AgeCommit message (Expand)Author
2020-06-24nix: Tweak .gitignore files....Christopher Baines