Last active
February 2, 2021 14:07
-
-
Save gbutt/5e741ec96eb682f5174cb5b2bb72d8cb to your computer and use it in GitHub Desktop.
Fix Kanban Height
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Rally Iteration Status | |
// @namespace https://gist.github.com/gbutt/5e741ec96eb682f5174cb5b2bb72d8cb | |
// @version 0.1 | |
// @description fix kanban height | |
// @author gbutt | |
// @match https://rally1.rallydev.com/ | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
setTimeout(function() { | |
let kanban = document.querySelector('.chr-PeriscopeContainer.chr-IterationStatusPrototypePage-periscope'); | |
if (kanban) kanban.style.height = ''; | |
}, 2000); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment