Guest User

jira agile width

a guest
Dec 8th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. // ==UserScript==
  2. // @name JIRA Extended Kanban Board
  3. // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
  4. // @include */secure/RapidBoard*
  5. // @namespace http://mergermarket.atlassian.net/
  6. // @version 0.1
  7. // @description JIRA Extended Kanban Board
  8. // ==/UserScript==
  9.  
  10. setTimeout(function() {
  11. var clone = $("#ghx-column-header-group").clone();
  12. clone.attr("id", "newHeader").css("background", "#FFF").css("position", "absolute").css("width", "2000px").css("margin-top", "-90px");
  13.  
  14. $("#ghx-column-header-group").remove();
  15. $("#ghx-rabid").append(clone);
  16. $("#ghx-pool").css("width", "2000px");
  17. $("body").removeClass("ghx-scroll-columns").css("overflow-y", "hidden !important");
  18. $("#ghx-work").attr("id", "ghx-work1").css("overflow-x", "scroll").css("overflow-y", "hidden").width("4000px");
  19. }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment