Skip to content

Instantly share code, notes, and snippets.

@phts
Created September 25, 2023 16:19
Show Gist options
  • Save phts/a6ef5366f0a7f69500c1f832ee747111 to your computer and use it in GitHub Desktop.
Save phts/a6ef5366f0a7f69500c1f832ee747111 to your computer and use it in GitHub Desktop.
[Userscript] Jira: Fix Agile Wallboard Gadget content scroll
// ==UserScript==
// @name Jira: Fix Agile Wallboard Gadget content scroll
// @namespace https://github.com/phts/
// @version 0.0.0
// @description Fix Agile Wallboard Gadget content scroll
// @author Phil Tsaryk
// @match https://jira.willhillatlas.com/secure/Dashboard.jspa
// @match https://jira.willhillatlas.com/secure/MyJiraHome.jspa
// @grant none
// ==/UserScript==
(function() {
'use strict';
['#gadget-126201', '#gadget-110207'].forEach((id) => {
setTimeout(() => {
document.querySelector(id).scrolling = 'yes'
}, 10000)
})
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment