Created
July 31, 2013 09:24
-
-
Save eeroan/6120668 to your computer and use it in GitHub Desktop.
User script for Chrome. To install, save this file and drag it to window -> extensions
Improve jira kanban board by setting max height and auto scroll for columns
This file contains 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== | |
// @match http://jira.tallinkintra.net/secure/RapidBoard.jspa* | |
// ==/UserScript== | |
var link = document.createElement('style') | |
link.setAttribute('type', 'text/css') | |
link.innerHTML=[ | |
'.ghx-parent-group {overflow-y:auto;overflow-x:hidden;max-height:500px;}', | |
'.ghx-columns .ghx-column {padding-bottom:0;}'].join('\n') | |
document.getElementsByTagName('head')[0].appendChild(link) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment