Skip to content

Instantly share code, notes, and snippets.

@gbutt
Last active February 2, 2021 14:07
Show Gist options
  • Save gbutt/5e741ec96eb682f5174cb5b2bb72d8cb to your computer and use it in GitHub Desktop.
Save gbutt/5e741ec96eb682f5174cb5b2bb72d8cb to your computer and use it in GitHub Desktop.
Fix Kanban Height
// ==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